Created
November 15, 2015 20:45
-
-
Save cjkoepke/4eab3d3fe474c1834a84 to your computer and use it in GitHub Desktop.
Limit a specified menu to a specified depth.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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