enclosure_links filter-hook . WP 4.4.0
Filters the list of enclosure links before querying the database.
Allows for the addition and/or removal of potential enclosures to save to postmeta before checking the database for existing enclosures.
Usage
add_filter( 'enclosure_links', 'filter_function_name_3238', 10, 2 ); function filter_function_name_3238( $post_links, $post_ID ){ // filter... return $post_links; }
- $post_links(string[])
- An array of enclosure links.
- $post_ID(int)
- Post ID.
Changelog
Since 4.4.0 | Introduced. |
Where the hook is called
enclosure_links
wp-includes/functions.php 899
$post_links = apply_filters( 'enclosure_links', $post_links, $post->ID );