comments_atom_head action-hookWP 2.8.0

Fires at the end of the Atom comment feed header.

Usage

add_action( 'comments_atom_head', 'wp_kama_comments_atom_head_action' );

/**
 * Function for `comments_atom_head` action-hook.
 * 
 * @return void
 */
function wp_kama_comments_atom_head_action(){

	// action...
}

Changelog

Since 2.8.0 Introduced.

Where the hook is called

In file: /wp-includes/feed-atom-comments.php
comments_atom_head
wp-includes/feed-atom-comments.php 67
do_action( 'comments_atom_head' );

Where the hook is used in WordPress

wp-includes/default-filters.php 379
add_action( $action, 'the_generator' );