我看到PHP通知错误;
Notice: Object of class WP_Query could not be converted to int in G:\\.....\\property-search-form.php on line 350
在那一行,我有一个元查询,它使用代码创建一个新的WP\\u查询结果集;
$results = new WP_Query( $args );
if(($results == 0) || ($results == false) || ($results == NULL) || !is_object($results) || !($results->have_posts())) {
return $results;
}
else {
return $results;
}
我知道最终的$result是一个数字,当我用9个匹配的结果运行它并使用print\\r显示结果时,它返回9,所以不确定这个错误的含义以及如何解决它。