显示父帖子中的子帖子列表

时间:2014-03-05 作者:Aziz Ali

我已经创建了自定义帖子类型。我已经发布了一篇家长帖子,还有一些子帖子。

在父帖子上,我想显示其子帖子。

我怎样才能做到这一点?

1 个回复
SO网友:Abhik

这样就可以了。。

function get_child_pages() {
    global $post;
    $query = new WP_Query( array( \'post_parent\' => $post->ID ) );

    if ( $query->have_posts() ) {
        echo \'<ul>\';
    while ( $query->have_posts() ) {
        $query->the_post();
            //Child pages
            echo \'<li>\' . get_the_title() . \'</li>\';
    }
        echo \'</ul>\';
    } else {
     echo \'Sorry, No posts found.\';
    wp_reset_postdata();
}

结束

相关推荐