grappler

google search in menu bar

Feb 10th, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. add_filter('wp_nav_menu_items','add_search_box', 10, 2);
  2. function add_search_box($items, $args) {
  3.     if($args->theme_location == 'header-menu') {
  4.         ob_start();
  5.         display_search_box(DISPLAY_RESULTS_AS_POP_UP);
  6.         $searchform = ob_get_contents();
  7.         ob_end_clean();
  8.  
  9.         return $items .= '<li id="searchform-item">' . $searchform . '</li>';
  10.     }
  11.     return $items;
  12. }
Add Comment
Please, Sign In to add comment