如何在WordPress菜单中添加搜索框?
如何在WordPress菜单中添加搜索框?且不需要不使用任何WordPress插件。 想要达到这种效果只需按照以下步骤相同。 如何在WordPress菜单中添加搜索框: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 .= ‘
- ’ . get_search_form( false ) . ‘