wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_nav_menu_locations › WordPress Function

Seit3.0.0
Veraltetn/v
get_nav_menu_locations ( Keine Parameter )
Gibt zurück:
  • (int[]) Associative array of registered navigation menu IDs keyed by their location name. If none are registered, an empty array.
Definiert in:
Codex:

Retrieves all registered navigation menu locations and the menus assigned to them.



Quellcode

function get_nav_menu_locations() {
	$locations = get_theme_mod( 'nav_menu_locations' );
	return ( is_array( $locations ) ) ? $locations : array();
}