在导航中添加搜索框WordPress开发教程
很多站长想要在自己网站的导航菜单中添加一个搜索框,今天主题盒子就为大家分享在导航中添加搜索框WordPress…
Warning: Attempt to read property "post_type" on null in /www/wwwroot/wper.net/wp-content/plugins/wper-meta.php on line 365
很多站长想要在自己网站的导航菜单中添加一个搜索框,今天主题盒子就为大家分享在导航中添加搜索框WordPress开发教程。只需要打开当前主题的functions.php文件,在里面添加以下代码:
//导航才当中添加搜索框
add_filter(‘wp_nav_menu_items’,’add_search_box’, 10, 2);
function add_search_box($items, $args) {
ob_start();
get_search_form();
$searchform = ob_get_contents();
ob_end_clean();
$items .= ‘<li>’ . $searchform . ‘</li>’;
return$items;
}
如果您需要修改搜索框的样式只需要在 $items .= ‘<li>’ . $searchform . ‘</li>’; 修改元素,或者添加一个类名,就可以方便快捷的修改搜索框的样式。
类别:WordPress函数讲解、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!