rss2_ns
This action is documented in wp-includes/feed-rss2.php.
Description
do_action( 'rss2_ns' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'rss2_ns' );
- The following example is for adding a hook callback.
- // define the rss2_ns callback
- function action_rss2_ns( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'rss2_ns', 'action_rss2_ns', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'rss2_ns', 'action_rss2_ns', 10, 0 );
Defined (2)
The action is defined in the following location(s).
- /wp-includes/feed-rss2-comments.php
- do_action( 'rss2_ns' );
- /wp-includes/feed-rss2.php
- do_action( 'rss2_ns' );