wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



_wp_menus_changed › WordPress Function

Da4.9.0
Deprecaton/a
_wp_menus_changed ( Nessun parametro )
Accedi:
  • private
Definito a:
Codex:

Handles menu config after theme change.



Sorgenti

function _wp_menus_changed() {
	$old_nav_menu_locations    = get_option( 'theme_switch_menu_locations', array() );
	$new_nav_menu_locations    = get_nav_menu_locations();
	$mapped_nav_menu_locations = wp_map_nav_menu_locations( $new_nav_menu_locations, $old_nav_menu_locations );

	set_theme_mod( 'nav_menu_locations', $mapped_nav_menu_locations );
	delete_option( 'theme_switch_menu_locations' );
}