Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_image_src_get_dimensions

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
1635       *
1636       * @param array|false $dimensions    Array with first element being the width
1637       *                                   and second element being the height, or
1638       *                                   false if dimensions could not be determined.
1639       * @param string      $image_src     The image source file.
1640       * @param array       $image_meta    The image meta data as returned by
1641       *                                   'wp_get_attachment_metadata()'.
1642       * @param int         $attachment_id The image attachment ID. Default 0.
1643       */
1644      return apply_filters( 'wp_image_src_get_dimensions', $dimensions, $image_src, $image_meta, $attachment_id );
1645 }
1646
1647 /**
1648  * Adds 'srcset' and 'sizes' attributes to an existing 'img' element.
1649  *
1650  * @since 4.4.0
1651  *
1652  * @see wp_calculate_image_srcset()
1653  * @see wp_calculate_image_sizes()