wordpress中的下一页

时间:2015-04-28 22:26:48

标签: wordpress

我在WordPress中很新! 然而,我努力想知道如何添加下一页和上一页的分页,我自豪地无法所以我问过,也许有人可以在这里帮忙

喜欢如何添加它以及如何选择在页面中选择的帖子数量以及如何设置它的样式..是否有一些类或什么? ^^

足够了,谢谢

1 个答案:

答案 0 :(得分:1)

尝试阅读官方WordPress Documentation about Pagination中的工作原理。

在那里,您将了解WordPress分页的几种方法和技巧。

设置分页的基本示例:

<!-- Start of the main loop. -->
<?php while ( have_posts() ) : the_post();  ?>

<!-- the rest of your theme's main loop -->

<?php endwhile; ?>
<!-- End of the main loop -->

<!-- Add the pagination functions here. -->

<div class="nav-previous alignleft"><?php next_posts_link( 'Older posts' ); ?></div>
<div class="nav-next alignright"><?php previous_posts_link( 'Newer posts'     ); ?></div>

<?php else : ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>