Advertisement
Guest User

Untitled

a guest
Dec 8th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_filter('wp_nav_menu_items','add_search_box', 10, 2);
  2. function add_search_box($items, $args) {
  3.  
  4. ob_start();
  5. get_search_form();
  6. $searchform = ob_get_contents();
  7. ob_end_clean();
  8. if( $args->theme_location == ‘nav-top’ )
  9. $items .= '<li>' . $searchform . '</li>';
  10.  
  11. return $items;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement