请问如何在WordPress菜单中添加搜索框_
打开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>' . get_search_form( false ) . '</li>
</ul>
';
return $items;
}
更新时间:2025-04-10 22:47:32
上一篇:请问PbootCMS输出分页代码
转载请注明原文链接:https://www.muzicopy.com/suibi/580.html