我需要获取带有分类学子帖子的帖子,所以我已将以下参数发送到 wp_query 但没有返回任何内容,并且我没有收到任何错误,
$args = array('post_type' => 'event','post_child'=>'location',
'tax_query' => array(
array(
'taxonomy' => 'kind_of_location',
'field' => 'slug',
'terms' => 'restuarant'
)
)
);
$my_query = new WP_Query($args);
这里有什么问题?以及如何获取与我的子帖子分类相关的帖子?