rss_enclosure

rss_enclosure

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

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('rss_enclosure') is found 1 times:

  • /wp-includes/feed.php line 500
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
                     * @since 2.2.0
                     *
                     * @param string $html_link_tag The HTML link tag with a URI and other attributes.
                     */
                    echo apply_filters( 'rss_enclosure', '<enclosure url="' . esc_url( trim( $enclosure&#91;0&#93; ) ) . '" length="' . absint( trim( $enclosure&#91;1&#93; ) ) . '" type="' . esc_attr( $type ) . '" />' . "\n" );
                }
            }
        }
    }
     
    /**