admin_menu
Constructor - Register administration header callback.
Description
Parameters (1)
- 0. $array (callback) =>
array(&$this, 'admin_menu')
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'admin_menu', $array );
- The following example is for adding a hook callback.
- // define the admin_menu callback
- function action_admin_menu( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'admin_menu', 'action_admin_menu', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'admin_menu', 'action_admin_menu', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /classes/class-s2-core.php
- add_action('admin_menu', array(&$this, 'admin_menu'));
- add_action('admin_menu', array(&$this, 's2_meta_init'));