<?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!