wp_feed_options action-hookWP 3.0.0

Fires just before processing the SimplePie feed object.

Usage

add_action( 'wp_feed_options', 'wp_kama_feed_options_action' );

/**
 * Function for `wp_feed_options` action-hook.
 * 
 * @param SimplePie $feed SimplePie feed object (passed by reference).
 *
 * @return void
 */
function wp_kama_feed_options_action( $feed ){

	// action...
}
$feed(SimplePie)
SimplePie feed object (passed by reference).

Changelog

Since 3.0.0 Introduced.

Where the hook is called

fetch_feed()
wp_feed_options
wp-includes/feed.php 830
do_action_ref_array( 'wp_feed_options', array( &$feed, $url ) );

Where the hook is used in WordPress

Usage not found.