Skip to content

Instantly share code, notes, and snippets.

@nutsandbolts
Created September 13, 2014 22:51
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 nutsandbolts/3f09933d5c8010317973 to your computer and use it in GitHub Desktop.
Save nutsandbolts/3f09933d5c8010317973 to your computer and use it in GitHub Desktop.
Add search to primary navigation
//* Add search to primary navigation
add_filter( 'wp_nav_menu_items', 'theme_menu_extras', 10, 2 );
function theme_menu_extras( $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