Skip to content

Instantly share code, notes, and snippets.

@cjkoepke
Created November 15, 2015 20:45
Show Gist options
  • Save cjkoepke/4eab3d3fe474c1834a84 to your computer and use it in GitHub Desktop.
Save cjkoepke/4eab3d3fe474c1834a84 to your computer and use it in GitHub Desktop.
Limit a specified menu to a specified depth.
<?php
//* Do NOT copy the opening PHP tag
//* Set menu depth to one level
add_filter( 'wp_nav_menu_args', 'ck_limit_nav_depth' );
function ck_limit_nav_depth( $args ) {
if( $args['theme_location'] == 'primary' )
$args['depth'] = 1;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment