我想在搜索栏中选择所有搜索和自定义帖子类型。我已经完成了自定义帖子搜索但是当我搜索所有然后出现错误而不工作。请参阅图像和代码。
搜索适用于两种自定义帖子类型。但是当我搜索所有然后它的显示错误。请参阅下面的代码。
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');
请让我知道其他情况。
答案 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');