thymceelie
Member
Posted 3 years ago #
For our setup we have a blog but then once a week we release a new song every week. So I'd like a next/previous button but just for the one category. And I'd like the buttons to be present on the home page as well as in a single post. Here's a page as an example...
http://www.newmusicmonday.com/wp/2009/03/photographs/
Right now each week we have to manually go in and link the newer and previous buttons to the appropriate page. Any help would be much appreciated.
Avaz Ibragimov
Member
Posted 3 years ago #
Open you single.php file and place the following code(in my theme, after the <?php endif; ?> command):
<?php if (in_category('id')) { ?>
<div class="navigation">
<div class="alignleft"><?php previous_post_link('<span class="arr">←</span> %link') ?></div>
<div class="alignright"><?php next_post_link('%link <span class="arr">→</span>') ?></div>
</div>
<?php } ?>
Replace the “id” with the id of your category.
ps: In your front page, you already have NEXT link at the bottom.