如何只展示定制帖子的孙子孙女?

时间:2019-04-16 作者:ianhman

我正在尝试显示自定义帖子类型的孙子。

结构相当简单:

Issues
   Issue 1
      Article 1
      Article 2
      Article 3 etc
   Issue 2
      Article 1
      Article 2
      Article 3 etc
   Issue 3 etc etc
是否有办法在指定ParentID的单个WP查询中显示文章(孙子)?

    //displays all posts :(
    $args = array(\'post_type\' => \'magazine\',
        \'child_of\' => array(20321), //Issues (parent postID)
    );

1 个回复
SO网友:ianhman

在进一步研究和测试后解决了我自己的问题:)最终使用了两个查询将结果从一个查询传递到另一个查询。希望这对别人有帮助。

    $argsIssues = array( \'post_type\' => \'magazine\',
        \'post_parent__in\' => array(20321), //get issue(children) posts from the issues(parent)
        \'fields\' => \'ids\' //query only the postIDs
    );
    $q = get_posts( $argsIssues ); //run $argsIssues query

    $argsArticles = array( \'post_type\' => \'magazine\',
        \'post_parent__in\' => $q //get article(grandchildren) posts from issue(children) posts.
    );

    query_posts( $argsArticles ); //run $argsArticles query

    //while loop goes here to display posts from $argsArticles query

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post