我正在开发一个 wordpress,并使用了这个http://wp.tutsplus.com/tutorials/quick-tip-display-excerpts-of-child-pages-with-a-shortcode/来制作一个简短的标签在父页面上列出子页面。
但是,我需要在其中添加一个分页,以便在此页面上仅列出 9 个最近的子页面,其中我有短标签。
知道怎么做吗?或者其他一些想法,用可以支持分页列出子页面的东西来替换它。
我正在开发一个 wordpress,并使用了这个http://wp.tutsplus.com/tutorials/quick-tip-display-excerpts-of-child-pages-with-a-shortcode/来制作一个简短的标签在父页面上列出子页面。
但是,我需要在其中添加一个分页,以便在此页面上仅列出 9 个最近的子页面,其中我有短标签。
知道怎么做吗?或者其他一些想法,用可以支持分页列出子页面的东西来替换它。
您需要调整$args
以使用posts_per_page
.
$args = array(
'post_parent' => $post->ID,
'post_type' => 'page',
'posts_per_page' => 9
);
为了让分页工作,我推荐Simple Pagination。安装后,在您希望它出现的位置调用它:
<?php if(function_exists('wp_simple_pagination')) {
wp_simple_pagination();
} ?>
分页不适用于 Wordpress 中的页面。页面不意味着分页。