如果你希望能够自动添加一个搜索框到Wordpress 3.0 +导航菜单,下面这段代码相信你会喜欢它!
打开你的functions.php文件,并粘贴以下代码,保存。之后当你启用WP 3.0 +自定义导航菜单后就会自动添加一个搜索框。
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;
}