wpseek.com
A WordPress-centric search engine for devs and theme authors



register_nav_menus › WordPress Function

Since3.0.0
Deprecatedn/a
register_nav_menus ( $locations = array() )
Parameters:
  • (string[]) $locations Associative array of menu location identifiers (like a slug) and descriptive text.
    Required: No
    Default: array()
Defined at:
Codex:

Registers navigation menu locations for a theme.



Source

function register_nav_menus( $locations = array() ) {
	global $_wp_registered_nav_menus;

	add_theme_support( 'menus' );

	foreach ( $locations as $key => $value ) {
		if ( is_int( $key ) ) {
			_doing_it_wrong( __FUNCTION__, __( 'Nav menu locations must be strings.' ), '5.3.0' );
			break;
		}
	}

	$_wp_registered_nav_menus = array_merge( (array) $_wp_registered_nav_menus, $locations );
}