Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_get_original_image_url

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
7256
7257      /**
7258       * Filters the URL to the original attachment image.
7259       *
7260       * @since 5.3.0
7261       *
7262       * @param string $original_image_url URL to original image.
7263       * @param int    $attachment_id      Attachment ID.
7264       */
7265      return apply_filters( 'wp_get_original_image_url', $original_image_url, $attachment_id );
7266 }
7267