Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_read_image_metadata

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
410      /**
411       * Filter the array of meta data read from an image's exif data.
412       *
413       * @since 2.5.0
414       *
415       * @param array  $meta            Image meta data.
416       * @param string $file            Path to image file.
417       * @param int    $sourceImageType Type of image.
418       */
419      return apply_filters( 'wp_read_image_metadata', $meta, $file, $sourceImageType );
420
421 }
422
423 /**
424  * Validate that file is an image.
425  *
426  * @since 2.5.0
427  *
428  * @param string $path File path to test if valid image.