如何自动将搜索字段添加到导航菜单| Wordpress
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何自动将搜索字段添加到导航菜单| Wordpress相关的知识,希望对你有一定的参考价值。
Place snippet in functions.php
add_filter('wp_nav_menu_items','add_search_box', 10, 2); function add_search_box($items, $args) { get_search_form(); $items .= '<li>' . $searchform . '</li>'; return $items; }
以上是关于如何自动将搜索字段添加到导航菜单| Wordpress的主要内容,如果未能解决你的问题,请参考以下文章