按ID获取给定页面的最后一个子项

时间:2018-11-06 作者:warm__tape

我有以下代码-我正在尝试获取ID为4117的页面的最后一个子页面。以下是我目前的代码:

// WP_Query arguments
$args = array(
    \'post_parent\'            => \'4117\',
    \'posts_per_page\'         => \'1\',
    \'order\'                  => \'DESC\',
    \'orderby\'                => \'menu_order\',
);

// The Query
$query = new WP_Query( $args );

$posts = $query->posts;

foreach($posts as $post) {

    echo $post->post_title;

}
但它似乎没有任何作用。关于我的问题有什么线索吗?

1 个回复
SO网友:Pat J

WP_Query 默认为获取帖子,而不是页面。

从上述参考页:

根据帖子和页面参数显示内容。记住默认值post_type 仅设置为显示帖子,而不显示页面。

此代码:

// WP_Query arguments
$args = array(
    \'post_parent\'            => \'4117\',
    \'post_type\'              => \'page\',
    \'posts_per_page\'         => \'1\',
    \'order\'                  => \'DESC\',
    \'orderby\'                => \'menu_order\',
);

// The Query
$query = new WP_Query( $args );
$posts = $query->posts;
foreach ( $posts as $post ) {
    echo $post->post_title;
}
。。。应该做你想做的事。

结束

相关推荐

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

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