in_admin_header action-hook . WP 3.0.0
Fires at the beginning of the content section in an admin page.
Usage
add_action( 'in_admin_header', 'action_function_name_9394' ); function action_function_name_9394(){ // 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 256
do_action( 'in_admin_header' );
Where in WP core the hook is used WordPress
wp-admin/admin-header.php 564
add_action( 'in_admin_header', 'wp_admin_bar_render', 0 );