• 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.

Viewing 1 replies (of 1 total)
  • 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">&larr;</span> %link') ?></div>
    <div class="alignright"><?php next_post_link('%link <span class="arr">&rarr;</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.

Viewing 1 replies (of 1 total)
  • The topic ‘next/previous post for just ONE category’ is closed to new replies.