你的functions.php
第519行,文件正在输出而不是返回内容。
你能发布519行附近的任何代码/函数吗?
编辑:
您的cpt_Search_category_Filter()
作用合上支架后,你有两个迷路的分号。
更改此项:
function cpt_Search_category_Filter($query) {
$post_type = array(\'post\',\'business_sold\');
if ($query->is_search || $query->is_category) {
$query->set(\'post_type\', $post_type);
};
return $query;
};
add_filter(\'pre_get_posts\',\'cpt_Search_category_Filter\');
对此:
function cpt_Search_category_Filter($query) {
$post_type = array(\'post\',\'business_sold\');
if ($query->is_search || $query->is_category) {
$query->set(\'post_type\', $post_type);
}
return $query;
}
add_filter(\'pre_get_posts\',\'cpt_Search_category_Filter\');