after_menu_locations_table action-hookWP 3.6.0

Fires after the menu locations table is displayed.

Usage

add_action( 'after_menu_locations_table', 'wp_kama_after_menu_locations_table_action' );

/**
 * Function for `after_menu_locations_table` action-hook.
 * 
 * @return void
 */
function wp_kama_after_menu_locations_table_action(){

	// action...
}

Changelog

Since 3.6.0 Introduced.

Where the hook is called

In file: /wp-admin/nav-menus.php
after_menu_locations_table
wp-admin/nav-menus.php 933
do_action( 'after_menu_locations_table' );

Where the hook is used in WordPress

Usage not found.