apply_filters( ‘wp_image_file_matches_image_meta’, bool $match, string $image_location, array $image_meta, int $attachment_id )

In this article

Filters whether an image path or URI matches image meta.

Parameters

$matchbool
Whether the image relative path from the image meta matches the end of the URI or path to the image file.
$image_locationstring
Full path or URI to the tested image file.
$image_metaarray
The image meta data as returned by ‘wp_get_attachment_metadata() ‘.
$attachment_idint
The image attachment ID or 0 if not supplied.

Source

return apply_filters( 'wp_image_file_matches_image_meta', $match, $image_location, $image_meta, $attachment_id );

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.