Definition:
function register_nav_menus( $locations = array() {}
Register navigation menus for a theme.
Parameters
- array $locations: Associative array of menu location identifiers (like a slug) and descriptive text.
Source code
function register_nav_menus( $locations = array() ) {
global $_wp_registered_nav_menus;
add_theme_support( 'menus' );
$_wp_registered_nav_menus = array_merge( (array) $_wp_registered_nav_menus, $locations );
}
2669

February 12, 2011 


No comments yet... Be the first to leave a reply!