1

我需要获取带有分类学子帖子的帖子,所以我已将以下参数发送到 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);

这里有什么问题?以及如何获取与我的子帖子分类相关的帖子?

4

1 回答 1

0

所以如果你想要位置的孩子,你的参数是 post_parent 而不是 post_child

于 2013-09-25T14:04:49.460 回答