rss_item action-hookWP 2.0.0

Fires at the end of each RSS feed item.

Usage

add_action( 'rss_item', 'wp_kama_rss_item_action' );

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

	// action...
}

Changelog

Since 2.0.0 Introduced.

Where the hook is called

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

Where the hook is used in WordPress

Usage not found.