edit_form_advanced
Fires after 'normal' context meta boxes have been output for all post types other than 'page'.
Description
Parameters (1)
- 0. $post (WP_Post)
- Post object.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'edit_form_advanced', $post );
- The following example is for adding a hook callback.
- // define the edit_form_advanced callback
- function action_edit_form_advanced( $post ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'edit_form_advanced', 'action_edit_form_advanced', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'edit_form_advanced', 'action_edit_form_advanced', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /wp-admin/edit-form-advanced.php
- do_action( 'edit_form_advanced', $post );
- /wp-includes/class-wp-embed.php
- add_action( 'edit_form_advanced', array( $this, 'maybe_run_ajax_cache' ) );