在 Wordpress 阅读选项中,我将其设置为索引最多只显示 2 个帖子。但是,缺少下一页和上一页按钮。我进入我的模板,尝试了默认方法,但它们都不起作用。
我尝试添加
<?php posts_nav_link(); ?>
没用。然后我尝试了
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div>
这也没有奏效。最后一页的源代码中根本没有出现任何内容。这些是默认的 Wordpress 功能,对吧?这里出了什么问题?
如果它有任何用处,这里是 index.php
<?php get_header(); ?>
<section class="content">
<ul class="items wrap">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<h4><?php the_time('F jS, Y') ?></h4>
<p><?php the_content(__('(more...)')); ?></p>
<hr>
<?php endwhile; else: ?>
<p><?php _e('Sorry, we couldn’t find the post you are looking for.'); ?></p>
<?php endif; ?>
<!-- I added the pagination code here. -->
</ul>
</section>
<div id="delimiter"></div>
<?php get_footer(); ?>
谢谢!