wp_read_image_metadata_types
The WordPress Core wp read image metadata types hook.
Description
Parameters (1)
- 0. $array (array) =>
array( IMAGETYPE_JPEG, IMAGETYPE_TIFF_II, IMAGETYPE_TIFF_MM )
- The array.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'wp_read_image_metadata_types', $array );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the wp_read_image_metadata_types callback
- function filter_wp_read_image_metadata_types( $array ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( 'wp_read_image_metadata_types', 'filter_wp_read_image_metadata_types', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'wp_read_image_metadata_types', 'filter_wp_read_image_metadata_types', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /wp-admin/includes/image.php
- if ( is_callable( 'exif_read_data' ) && in_array( $sourceImageType, apply_filters( 'wp_read_image_metadata_types', array( IMAGETYPE_JPEG, IMAGETYPE_TIFF_II, IMAGETYPE_TIFF_MM ) ) ) ) {