wp_ajax_customize-nav-menus-insert-auto-draft
The WordPress Core wp ajax customize nav menus insert auto draft hook.
Description
Parameters (1)
- 0. $array (callback) =>
array( $this, 'ajax_insert_auto_draft_post' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_ajax_customize-nav-menus-insert-auto-draft', $array );
- The following example is for adding a hook callback.
- // define the wp_ajax_customize-nav-menus-insert-auto-draft callback
- function action_wp_ajax_customize_nav_menus_insert_auto_draft( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_ajax_customize-nav-menus-insert-auto-draft', 'action_wp_ajax_customize_nav_menus_insert_auto_draft', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_ajax_customize-nav-menus-insert-auto-draft', 'action_wp_ajax_customize_nav_menus_insert_auto_draft', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/class-wp-customize-nav-menus.php
- add_action( 'wp_ajax_customize-nav-menus-insert-auto-draft', array( $this, 'ajax_insert_auto_draft_post' ) );