使用WP_QUERY获取POST及其子项

时间:2020-05-17 作者:montrealist

我想要父帖子及其子帖子。我不知道家长的帖子ID,只是post_password 字段不为空。

非常类似于this question 但在我的情况下,post ID是未知的。

list of posts in the database with post parent and its children highlighted

1 个回复
最合适的回答,由SO网友:Raashid Din 整理而成

与您的问题类似的问题,我从那里获取了示例代码。您可以用此替换“post\\u parent”。

global $post;
$args = [
    \'wpse_include_parent\' => true,
    \'post_parent\'         => wp_get_post_parent_id( $post->ID ),
    \'post_type\'           => \'post\'
    // Add additional arguments
];
$q = new WP_Query( $args );
当您在子帖子中时,此代码将获取父帖子id

相关推荐

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

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