WP 4.0 upgrade displays wrong menu
-
I just upgraded to WP 4.0, and it broke my main navigation menu. First, it showed only the “top” level of the menu, none of the dropdowns. Reading another thread, I changed from
<?php wp_nav_menu( ); ?>
in my header.php file to:
<?php wp_nav_menu( array( 'theme_location' => 'topMenu') ); ?>
I also tried
<?php wp_nav_menu( array( 'menu' => 'topMenu') ); ?>
but in both cases, WP now diplays a default menu instead of my topMenu! I can tell because it’s alphabetical showing of all the pages, instead of the drop-down structure of my specified topMenu!!
Here is url of my site:
https://WriteYourBestsellerBook.com
I’ve looked at the specs on wp_nav_menu, and don’t understand the parameters. Apparently, I am missing something. Please assist, thanks!
- The topic ‘WP 4.0 upgrade displays wrong menu’ is closed to new replies.