wp_nav_menu help…
-
<?php wp_nav_menu( array( ‘theme_location’ => ‘sports-menu’ ) ); ?>
Is what to pull specific menus in that location on the pages i assigned.
However what is the proper if tag to ignore if page or homepage doesnt have menu in that location on specific page?
I have tried
<?php if ( has_nav_menu( ‘sports-menu’ ) ) : ?>
<?php wp_nav_menu( array( ‘theme_location’ => ‘sports-menu’ ) ); ?>
<?php endif; ?>It thrown the WP off and wont even show at all. What is the right way to write? Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘wp_nav_menu help…’ is closed to new replies.