enclosure_links

enclosure_links

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('enclosure_links') is found 1 times:

  • /wp-includes/functions.php line 938
    	 *
    	 * @param string[] $post_links An array of enclosure links.
    	 * @param int      $post_id    Post ID.
    	 */
    	$post_links = apply_filters( 'enclosure_links', $post_links, $post->ID );
    
    	foreach ( (array) $post_links as $url ) {
    		$url = strip_fragment_from_url( $url );
    
    		if ( '' !== $url && ! $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = 'enclosure' AND meta_value LIKE %s", $post->ID, $wpdb->esc_like( $url ) . '%' ) ) ) {