Skip to content

Instantly share code, notes, and snippets.

@ovizii
Created July 28, 2013 08:53
Show Gist options
  • Select an option

  • Save ovizii/6098008 to your computer and use it in GitHub Desktop.

Select an option

Save ovizii/6098008 to your computer and use it in GitHub Desktop.
Add search field to navigation
// ADD SEARCH BOX TO NAVIGATION
function so_add_search_box($items, $args) {
ob_start();
get_search_form();
$searchform = ob_get_contents();
ob_end_clean();
$items .= '<li class="nav_search">' . $searchform . '</li>';
return $items;
}
add_filter('wp_nav_menu_items','so_add_search_box', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment