do_feed_rss2
The WordPress Core do feed rss2 hook.
Description
Parameters (3)
- 0. $do_feed_rss2 (string) =>
'do_feed_rss2'
- The do feed rss2.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
1
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'do_feed_rss2', $do_feed_rss2, $int, $int );
- The following example is for adding a hook callback.
- // define the do_feed_rss2 callback
- function action_do_feed_rss2( $do_feed_rss2, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'do_feed_rss2', 'action_do_feed_rss2', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'do_feed_rss2', 'action_do_feed_rss2', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/default-filters.php
- add_action( 'do_feed_rss', 'do_feed_rss', 10, 1 );