in_admin_header action-hookWP 3.0.0

Fires at the beginning of the content section in an admin page.

Usage

add_action( 'in_admin_header', 'wp_kama_in_admin_header_action' );

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

	// action...
}

Changelog

Since 3.0.0 Introduced.

Where the hook is called

In file: /wp-admin/admin-header.php
in_admin_header
wp-admin/admin-header.php 267
do_action( 'in_admin_header' );

Where the hook is used in WordPress

wp-includes/default-filters.php 666
add_action( 'in_admin_header', 'wp_admin_bar_render', 0 );