add_meta_boxes
This action is documented in wp-admin/edit-form-advanced.php.
Description
Parameters (1)
- 0. $array (callback) =>
array( &$this, 'add_metaboxes' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'add_meta_boxes', $array );
- The following example is for adding a hook callback.
- // define the add_meta_boxes callback
- function action_add_meta_boxes( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'add_meta_boxes', 'action_add_meta_boxes', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'add_meta_boxes', 'action_add_meta_boxes', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /lib/post.php
- add_action( 'add_meta_boxes', array( &$this, 'add_metaboxes' ) );
- /lib/sharing.php
- add_action( 'add_meta_boxes', array( &$this, 'add_post_buttons_metabox' ) );