• Hi!
    How do I get the next/prev links to get posts from the same category?

    I think I have to modify this code in loop-post.php??

    <div class="previous-post"><?php previous_post_link('← %link'); ?></div>
    <div class="next-post"><?php next_post_link('%link →'); ?></div>
Viewing 1 replies (of 1 total)
  • Hello,

    You can add a category ID parameter. For example:

    <?php previous_post_link('%link', 'Previous in category', TRUE, '13'); ?>
    <?php next_post_link('%link', 'Next in category', TRUE, '13'); ?>

    Where ’13’ is the category ID.

    I hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Next/prev in same category’ is closed to new replies.