load_feed_engine
Fires before MagpieRSS is loaded, to optionally replace it.
Description
do_action( 'load_feed_engine' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'load_feed_engine' );
- The following example is for adding a hook callback.
- // define the load_feed_engine callback
- function action_load_feed_engine( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'load_feed_engine', 'action_load_feed_engine', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'load_feed_engine', 'action_load_feed_engine', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/rss.php
- do_action( 'load_feed_engine' );