如何自动将搜索字段添加到导航菜单| Wordpress

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何自动将搜索字段添加到导航菜单| Wordpress相关的知识,希望对你有一定的参考价值。

Place snippet in functions.php
  1. add_filter('wp_nav_menu_items','add_search_box', 10, 2);
  2. function add_search_box($items, $args) {
  3.  
  4. get_search_form();
  5. $searchform = ob_get_contents();
  6.  
  7. $items .= '<li>' . $searchform . '</li>';
  8.  
  9. return $items;
  10. }

以上是关于如何自动将搜索字段添加到导航菜单| Wordpress的主要内容,如果未能解决你的问题,请参考以下文章

将 UITextField 添加到导航项的标题视图

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

在 wordpress 的导航菜单中添加搜索栏

Wordpress 如何在导航菜单中删除自动生成的

引导导航下拉菜单切换问题

如何在导航栏上添加侧菜单关闭按钮