commentsrss2_head action-hookWP 2.3.0

Fires at the end of the RSS2 comment feed header.

Usage

add_action( 'commentsrss2_head', 'wp_kama_commentsrss2_head_action' );

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

	// action...
}

Changelog

Since 2.3.0 Introduced.

Where the hook is called

In file: /wp-includes/feed-rss2-comments.php
commentsrss2_head
wp-includes/feed-rss2-comments.php 71
do_action( 'commentsrss2_head' );

Where the hook is used in WordPress

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