atom_head
Fires just before the first Atom feed entry.
Description
do_action( 'atom_head' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'atom_head' );
- The following example is for adding a hook callback.
- // define the atom_head callback
- function action_atom_head( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'atom_head', 'action_atom_head', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'atom_head', 'action_atom_head', 10, 0 );
Defined (2)
The action is defined in the following location(s).
- /wp-includes/feed-atom.php
- do_action( 'atom_head' );
- /wp-includes/default-filters.php
- add_action( 'atom_head', 'atom_site_icon' );