我是wordpress的新手。任何人都可以帮我在给定的父帖下显示帖子列表。我需要管理那些儿童帖子的分页。我使用过这段代码。
$all_pages = get_pages('child_of='.$post->ID.'&sort_column=post_title');
foreach($all_pages as $pages)
{
// here goes display of the post info
}
提前致谢。