apply_filters( 'attachment_url_to_postid', int|null $post_id, string $url )

Filters an attachment ID found by URL.


Parameters

$post_id int|null
The post_id (if any) found by the function.
$url string
The URL being looked up.

Top ↑

Source

File: wp-includes/media.php. View all references

return (int) apply_filters( 'attachment_url_to_postid', $post_id, $url );


Top ↑

Changelog

Changelog
Version Description
4.2.0 Introduced.

Top ↑

User Contributed Notes

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