wp_update_nav_menu_item
The WordPress Core wp update nav menu item hook.
Description
Parameters (3)
- 0. $array (callback) =>
array( $this, 'flush_cached_value' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_update_nav_menu_item', $array, $int, $int );
- The following example is for adding a hook callback.
- // define the wp_update_nav_menu_item callback
- function action_wp_update_nav_menu_item( $array, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_update_nav_menu_item', 'action_wp_update_nav_menu_item', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_update_nav_menu_item', 'action_wp_update_nav_menu_item', 10, 3 );
Defined (2)
The action is defined in the following location(s).
- /wp-includes/customize/class-wp-customize-nav-menu-item-setting.php
- add_action( 'wp_update_nav_menu_item', array( $this, 'flush_cached_value' ), 10, 2 );
- /wp-includes/nav-menu.php
- do_action( 'wp_update_nav_menu_item', $menu_id, $menu_item_db_id, $args );