Geralmente, um formulário de pesquisa faz parte do cabeçalho superior do site. Você pode personalizar o menu de navegação e exibir um formulário de pesquisa com ele.
Instruções: Adicione o código a seguir ao arquivo functions.php do seu tema do WordPress para adicionar o formulário de pesquisa a um menu wp_nav_menu
específico. Se você tiver vários menus, substitua MENU-NAME
pelo nome do menu em que deseja adicionar o formulário de pesquisa.
add_filter('wp_nav_menu_items', 'add_search_form', 10, 2); function add_search_form($items, $args) { if( $args->theme_location == 'MENU-NAME' ) $items .= '<li class="search"><form role="search" method="get" id="searchform" action="'.home_url( '/' ).'"><input type="text" value="search" name="s" id="s" /><input type="submit" id="searchsubmit" value="'. esc_attr__('Search') .'" /></form></li>'; return $items; }
Você também pode gostar de limitar a quantidade de itens de menu no WordPress.
Hi,
there is a way to avoid close menu after first click in the input? is happening in my case.
thank you
You may want check to see if it is an issue with the theme.
I’m trying to figure out how to order the search form within a nav menu. For example a standard menu with Home About Services Contact Us – could I put the search form after Services and before the Contact Us? Or after Home and before About?