Skip to content

Instantly share code, notes, and snippets.

@Clorith
Created June 11, 2014 11:06
Show Gist options
  • Save Clorith/4321f1a5793fecd7e006 to your computer and use it in GitHub Desktop.
Save Clorith/4321f1a5793fecd7e006 to your computer and use it in GitHub Desktop.
<?php
function wrap_sub_nav( $nav ) {
return preg_replace( '%<ul class="sub-menu">(.+\n)</ul>%s', '<div class="menu-form"><ul class="sub-menu">$1</ul></div>', $nav );
}
add_action( 'wp_nav_menu_items', 'wrap_sub_nav ');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment