do_feed_atom
Fires once the given feed is loaded.
Это один из вариантов динамического хука do_feed_(feed)
Использование
add_action( 'do_feed_atom', 'wp_kama_do_feed_atom_action', 10, 2 ); /** * Function for `do_feed_atom` action-hook. * * @param bool $is_comment_feed Whether the feed is a comment feed. * @param string $feed The feed name. * * @return void */ function wp_kama_do_feed_atom_action( $is_comment_feed, $feed ){ // action... }
- $is_comment_feed(true|false)
- Whether the feed is a comment feed.
- $feed(строка)
- The feed name.
Список изменений
С версии 2.1.0 | Введена. |
С версии 4.4.0 | The $feed parameter was added. |
Где вызывается хук
wp-includes/functions.php 1634
do_action( "do_feed_{$feed}", $wp_query->is_comment_feed, $feed );
Где используется хук в WordPress
wp-includes/default-filters.php 400
add_action( 'do_feed_atom', 'do_feed_atom', 10, 1 );