我的 Archive.php 页面工作正常,底部工作的前向和后向链接:http: //archibaldbutler.com/projects/williamsmurrayhamm/2013/01/
我复制了这个并将其命名为 category.php,但上一个和下一个导航在我的 /projects/ 类别中不起作用。我认为这与找不到网址有关,因为网址中有一个“子部分”:http: //archibaldbutler.com/projects/williamsmurrayhamm/projects/
我有自定义永久链接结构:/%category%/%postname%/
这是我在两个页面上的循环代码:
<!-- main editable content grab from wordpress pages -->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1 class="page-title"><?php the_title(); ?></h1>
<br class="c" />
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>" class="readmore">Read More</a>
<br class="c" />
<?php endwhile; endif; ?>
</div>
<div class="pagination">
<div class="floatleft">
<?php previous_posts_link( '« Newer Entries' ) ?>
</div>
<div class="floatright">
<?php next_posts_link('Older Entries »', 0); ?>
</div>
</div>
<br class="c" />
请帮助我已经坚持了几个小时。谢谢,阿奇。