如何将搜索添加到菜单?我想要:
add_filter(\'wp_nav_menu_items\',\'add_search_box_to_menu\', 10, 2);
function add_search_box_to_menu( $items, $args ) {
if( $args->theme_location == \'primary\' )
return $items. get_search_form ();
return $items;}
在我的
functions.php
. 但它称之为标准搜索模板。我已经创建了
searchform.php
在我的子主题文件夹中。
这部分是示例,但它是硬编码的。
return $items."<li class=\'menu-header-search\'>
<form action=\'http://example.com/\' id=\'searchform\' method=\'get\'>
<input type=\'text\' name=\'s\' id=\'s\' placeholder=\'Search\'></form></li>";