Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active December 7, 2015 16:57
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 braddalton/745267301f8189d4b5a3 to your computer and use it in GitHub Desktop.
Save braddalton/745267301f8189d4b5a3 to your computer and use it in GitHub Desktop.
Add search to primary nav menu Source http://my.studiopress.com/snippets/nav-extras/
add_filter( 'wp_nav_menu_items', 'nav_menu_search', 10, 2 );
function nav_menu_search( $menu, $args ) {
if ( 'primary' !== $args->theme_location )
return $menu;
ob_start();
get_search_form();
$search = ob_get_clean();
$menu .= '<li class="right search">' . $search . '</li>';
return $menu;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment