Skip to content

Instantly share code, notes, and snippets.

@levymetal
Last active November 1, 2022 02:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save levymetal/7dc5e1aa0a737ed1ba24 to your computer and use it in GitHub Desktop.
Save levymetal/7dc5e1aa0a737ed1ba24 to your computer and use it in GitHub Desktop.
<?php
function my_wp_nav_menu( $theme_location = 'primary', $container = false, $items_wrap = "<div class='widget'><nav><ul>%3\$s</ul></nav></div>" ) {
$menu = wp_nav_menu(array(
'container' => $container,
'items_wrap' => $items_wrap,
'sub_menu' => true,
'theme_location' => $theme_location,
'echo' => false
));
if ( $menu == '' ) {
$menu = wp_nav_menu(array(
'container' => $container,
'items_wrap' => $items_wrap,
'depth' => 1,
'theme_location' => $theme_location,
'echo' => false
));
}
echo $menu;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment