如何在WordPress菜单中添加搜索框_

wdzsjl 1个月前 (10-10) 阅读数 12 #织梦DedeCms

打开functions.php文件,并在文件末尾的代码片段下面复制粘贴并保存。以下代码将自动将搜索框添加到主菜单栏。

/**
* Add searchbox in menubar
*/
add_filter( 'wp_nav_menu_items','add_search_box', 10, 2 );
function add_search_box( $items, $args ) {
$items .= '
<ul>
<li>&#39; . get_search_form( false ) . &#39;</li>
</ul>
&#39;;
return $items;
}

wx.jpg ywfw.jpg
热门