wp_delete_nav_menu
Fires after a navigation menu has been successfully deleted.
Description
Parameters (1)
- 0. $menu_term_id (int)
- ID of the deleted menu.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_delete_nav_menu', $menu_term_id );
- The following example is for adding a hook callback.
- // define the wp_delete_nav_menu callback
- function action_wp_delete_nav_menu( $menu_term_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_delete_nav_menu', 'action_wp_delete_nav_menu', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_delete_nav_menu', 'action_wp_delete_nav_menu', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/nav-menu.php
- do_action( 'wp_delete_nav_menu', $menu->term_id );