Incorrect usage of wp_nav_menu
Using the WordPress navigation menus is quite straightforward. First a theme location is registered. Here is an example taken from Twenty Twelve: [sourcecode language=”php”] register_nav_menu( ‘primary’, __( ‘Primary Menu’, ‘twentytwelve’ ) ); [/sourcecode] Second, the navigation menu is displayed with ‘wp_nav_menu’. Here again is an example taken from Twenty Twelve: [sourcecode language=”php”] wp_nav_menu( array( ‘theme_location’…