Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_img_tag_add_srcset_and_sizes_attr

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
1897       * Returning anything else than `true` will not add the attributes.
1898       *
1899       * @since 5.5.0
1900       *
1901       * @param bool   $value         The filtered value, defaults to `true`.
1902       * @param string $image         The HTML `img` tag where the attribute should be added.
1903       * @param string $context       Additional context about how the function was called or where the img tag is.
1904       * @param int    $attachment_id The image attachment ID.
1905       */
1906      $add = apply_filters( 'wp_img_tag_add_srcset_and_sizes_attr', true, $image, $context, $attachment_id );
1907
1908      if ( true === $add ) {
1909           $image_meta = wp_get_attachment_metadata( $attachment_id );
1910           return wp_image_add_srcset_and_sizes( $image, $image_meta, $attachment_id );
1911      }
1912
1913      return $image;
1914 }
1915