En la mayoría de los casos, un formulario de búsqueda forma parte de la cabecera superior del sitio web. Puede personalizar el menú de navegación y mostrar un formulario de búsqueda con él.
Instrucciones: Añada el siguiente código al archivo functions.php de su tema de WordPress para añadir el formulario de búsqueda a un wp_nav_menu
específico. Si tiene varios menús, sustituya MENU-NAME
por el nombre del menú en el que desea añadir el formulario de búsqueda.
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; }
También puede disfrutar de limitar la cantidad de elementos de menú en 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?