wp_feed_options
Fires just before processing the SimplePie feed object.
Description
Parameters (1)
- 0. $array (array) =>
array( &$feed, $url )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_feed_options', $array );
- The following example is for adding a hook callback.
- // define the wp_feed_options callback
- function action_wp_feed_options( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_feed_options', 'action_wp_feed_options', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_feed_options', 'action_wp_feed_options', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/feed.php
- do_action_ref_array( 'wp_feed_options', array( &$feed, $url ) );