rss_head action-hookWP 2.0.0

Fires at the end of the RSS Feed Header.

Usage

add_action( 'rss_head', 'wp_kama_rss_head_action' );

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

	// action...
}

Changelog

Since 2.0.0 Introduced.

Where the hook is called

In file: /wp-includes/feed-rss.php
rss_head
wp-includes/feed-rss.php 26
do_action( 'rss_head' );

Where the hook is used in WordPress

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