如何使用分页显示给定帖子的子帖子?
问题描述:
我是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
}
在此先感谢。