rdf_header
Fires at the end of the RDF feed header.
Description
do_action( 'rdf_header' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'rdf_header' );
- The following example is for adding a hook callback.
- // define the rdf_header callback
- function action_rdf_header( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'rdf_header', 'action_rdf_header', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'rdf_header', 'action_rdf_header', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/feed-rdf.php
- do_action( 'rdf_header' );