我有一个自定义的帖子类型“property”。我正在尝试搜索它,但它不适用于wp\\u查询参数“s”。
$wp_query = Wp_Query([\'post_type\' => \'property\', \'s\' => \'test\']);
它可以与其他Wp\\U查询参数配合使用,如下所示:
$wp_query = Wp_Query([
\'post_type\' => \'property\',
[
\'taxonomy\' => \'property_usage_type\',
\'field\' => \'id\',
\'terms\' => $_GET[\'sb-usage-type\'],
]
]);
它也适用于除“s”之外的其他参数。但是“s”与“post”post type一起使用。我还尝试回显sql查询-
$wp_query->request
但除非我去掉“s”,否则它会呼出任何东西。