do_feed_(feed) action-hook . WP 2.1.0
Fires once the given feed is loaded.
The dynamic portion of the hook name, $feed, refers to the feed template name. Possible values include: 'rdf', 'rss', 'rss2', and 'atom'.
Usage
add_action( 'do_feed_(feed)', 'action_function_name_3032', 10, 2 ); function action_function_name_3032( $is_comment_feed, $feed ){ // action... }
- $is_comment_feed(true/false)
- Whether the feed is a comment feed.
- $feed(string)
- The feed name.
Changelog
Since 2.1.0 | Introduced. |
Since 4.4.0 | The $feed parameter was added. |
Where the hook is called
do_feed_(feed)
wp-includes/functions.php 1579
do_action( "do_feed_{$feed}", $wp_query->is_comment_feed, $feed );
Where in WP core the hook is used WordPress
wp-includes/functions.php 341
add_action( 'do_feed_rdf', 'do_feed_rdf', 10, 0 );
wp-includes/functions.php 342
add_action( 'do_feed_rss', 'do_feed_rss', 10, 0 );
wp-includes/functions.php 343
add_action( 'do_feed_rss2', 'do_feed_rss2', 10, 1 );
wp-includes/functions.php 344
add_action( 'do_feed_atom', 'do_feed_atom', 10, 1 );