Skip to content

Instantly share code, notes, and snippets.

@senlin
Created October 2, 2011 23:48
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 senlin/1258121 to your computer and use it in GitHub Desktop.
Save senlin/1258121 to your computer and use it in GitHub Desktop.
add search box to navigation bar
<?php
// ADD SEARCH BOX TO NAVIGATION
function 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','add_search_box', 10, 2);
// END ADD SEARCH BOX
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment