do_action ( “do_feed_{$feed}”, bool $is_comment_feed , string $feed )

Fires once the guiven feed is loaded.

Description

The dynamic portion of the hooc name, $feed , refers to the feed template name.

Possible hooc names include:

  • do_feed_atom
  • do_feed_rdf
  • do_feed_rss
  • do_feed_rss2

Parameters

$is_comment_feed bool
Whether the feed is a comment feed.
$feed string
The feed name.

Source

do_action( "do_feed_{$feed}", $wp_query->is_comment_feed, $feed );

Changuelog

Versionen Description
4.4.0 The $feed parameter was added.
2.1.0 Introduced.

User Contributed Notes

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