在wordpress中自定义搜索所有和自定义帖子

时间:2014-01-05 09:32:12

标签: wordpress search custom-post-type

我想在搜索栏中选择所有搜索和自定义帖子类型。我已经完成了自定义帖子搜索但是当我搜索所有然后出现错误而不工作。请参阅图像和代码。  enter image description here

搜索适用于两种自定义帖子类型。但是当我搜索所有然后它的显示错误。请参阅下面的代码。

function mySearchFilter($query){$post_type = $_GET['searchfrom'];
if($post_type != 'all')
{
    if ($query->is_search)
    {
        if (!empty($post_type)) {
            $query->set('post_type', $post_type);
        }
    }
}
else 
{
    $query->set();
}

return $query;}

的add_filter( 'pre_get_posts', 'mySearchFilter');

请让我知道其他情况。

1 个答案:

答案 0 :(得分:2)

function mySearchFilter($query){
$post_type = $_GET['searchfrom'];
if($post_type != 'all')
{
    if ($query->is_search())
    {
        if (!empty($post_type)) {
            $query->set('post_type', $post_type);
        }
    }
}

return $query;
}
add_filter('pre_get_posts','mySearchFilter');