Skip to content

Instantly share code, notes, and snippets.

@ControlledChaos
Last active August 8, 2016 20:18
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 ControlledChaos/f70b8cacb5e728915eac to your computer and use it in GitHub Desktop.
Save ControlledChaos/f70b8cacb5e728915eac to your computer and use it in GitHub Desktop.
Remove custom menu container div

Remove custom menu container div

WordPress Snippet

<?php
function ccd_remove_menu_div( $args = '' ) {
$args['container'] = false;
return $args;
}
add_filter( 'wp_nav_menu_args', 'ccd_remove_menu_div' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment