Skip to content

Instantly share code, notes, and snippets.

@baczoni
Created April 24, 2012 16:17
Show Gist options
  • Save baczoni/2481130 to your computer and use it in GitHub Desktop.
Save baczoni/2481130 to your computer and use it in GitHub Desktop.
Wordpress: Add searchbox to nav menu
add_filter('wp_nav_menu_items','add_search_box', 10, 2);
function add_search_box($items, $args) {
ob_start();
get_search_form();
$searchform = ob_get_contents();
ob_end_clean();
$items .= '<li>' . $searchform . '</li>';
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment