after_menu_locations_table
Fires after the menu locations table is displayed.
Description
do_action( 'after_menu_locations_table' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'after_menu_locations_table' );
- The following example is for adding a hook callback.
- // define the after_menu_locations_table callback
- function action_after_menu_locations_table( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'after_menu_locations_table', 'action_after_menu_locations_table', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'after_menu_locations_table', 'action_after_menu_locations_table', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/nav-menus.php
- do_action( 'after_menu_locations_table' ); ?>