Skip to content

Instantly share code, notes, and snippets.

@AnkanSoul
Created April 25, 2018 15:43
Show Gist options
  • Select an option

  • Save AnkanSoul/121a97e18f0f2e18dcbab00f91c247dd to your computer and use it in GitHub Desktop.

Select an option

Save AnkanSoul/121a97e18f0f2e18dcbab00f91c247dd to your computer and use it in GitHub Desktop.
Nav menu container false
======================= Nav menu container false ==========
add_filter('wp_nav_menu_args', 'prefix_nav_menu_args');
function prefix_nav_menu_args($args = ''){
$args['container'] = false;
return $args;
}
===========================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment