atom_head action-hookWP 2.0.0

Fires just before the first Atom feed entry.

Usage

add_action( 'atom_head', 'wp_kama_atom_head_action' );

/**
 * Function for `atom_head` action-hook.
 * 
 * @return void
 */
function wp_kama_atom_head_action(){

	// action...
}

Changelog

Since 2.0.0 Introduced.

Where the hook is called

In file: /wp-includes/feed-atom.php
atom_head
wp-includes/feed-atom.php 44
do_action( 'atom_head' );

Where the hook is used in WordPress

wp-includes/default-filters.php 379
add_action( $action, 'the_generator' );
wp-includes/default-filters.php 383
add_action( 'atom_head', 'atom_site_icon' );