edit_form_top
Fires at the beginning of the edit form.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'backups_after_publish_msg' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'edit_form_top', $array );
- The following example is for adding a hook callback.
- // define the edit_form_top callback
- function action_edit_form_top( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'edit_form_top', 'action_edit_form_top', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'edit_form_top', 'action_edit_form_top', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /class.jetpack-jitm.php
- add_action( 'edit_form_top', array( $this, 'backups_after_publish_msg' ) );