Allows you to display a sub-menu, it's depth from there on and gives you control over the menu-item classes.
As of April 2026, Codepress Menu is a WordPress nav plugin with 90 active installations and a 5/5 rating from 2 reviews. It has been downloaded 8.2K+ times in total. Requires WordPress 3.1+ and PHP false+. Available on WordPress.org since 2012. Last updated 12 years ago — may have compatibility concerns. Top alternative: Menu Duplicator.
Uses the native wp_nav_menu(). Add parameters to the wp_nav_menu() to enable functionality.
Also, ships with one-click delete menu-items in the WordPress admin. Turned off or on using the screen-options. Sweet.
Examples
This will get the first sub-menu from the active branch and 2 levels beyond (menu + sub-menu + sub-menu):
wp_nav_menu( array(
'level' => 2,
'depth' => 3
));
Show the current branch only:
wp_nav_menu( array(
'level' => 1
));
Aimed on simple use in various use cases:
// display first level in the header
wp_nav_menu( array(
'depth' => 1
));
// display first sub-menu from the current branch somewhere else
wp_nav_menu( array(
'depth' => 2,
'level' => 2
));
Another feature is it’s control over the css classes that are given to…
| WordPress | 3.1+ requiredTested up to 3.6.1 |
| PHP | false+ required |
Plugin data sourced from WordPress.org. Analysis and metrics by PluginSift.