Advertisement
Guest User

Untitled

a guest
Nov 20th, 2015
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. if( ! function_exists( 'videotube_add_searchform_on_menu' ) ){
  2.     /**
  3.      * @param unknown_type $items
  4.      * @param unknown_type $args
  5.      * @return string
  6.      */
  7.     function videotube_add_searchform_on_menu( $items, $args ) {
  8.         if ( $args->theme_location == 'header_main_navigation' ) {
  9.             $items .= '<li id="search-form" class="search-form menu-item">'. get_search_form(false) .'</li>';
  10.         }
  11.         return $items;
  12.     }
  13.     add_filter( 'wp_nav_menu_items', 'videotube_add_searchform_on_menu', 10, 2 );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement