adminmenu action-hookWP 2.5.0

Fires after the admin menu has been output.

Usage

add_action( 'adminmenu', 'wp_kama_adminmenu_action' );

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

	// action...
}

Changelog

Since 2.5.0 Introduced.

Where the hook is called

In file: /wp-admin/menu-header.php
adminmenu
wp-admin/menu-header.php 304
do_action( 'adminmenu' );

Where the hook is used in WordPress

Usage not found.