Advertisement
srikat

Untitled

May 31st, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function theme_menu_extras( $menu, $args ) {
  2.  
  3. if ( 'primary' !== $args->theme_location )
  4. return $menu;
  5.  
  6. $menu .= '<li class="search"><a id="main-nav-search-link" class="icon-search"></a><div class="search-div">' . get_search_form( false ) . '</div></li>';
  7.  
  8. return $menu;
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement