Site logo

Archived topic

Pagination in posts for categorys

3 replies · Started by Carl on October 24, 2019

Viewing posts 1–4 of 4

I have two pages with blog posts, one with category1 and one with category2.
If klick on a post from category1, the to next or previous links I want to see the next/previous post in that category. Is this possible?

Thank you!

Hi there,

try adding this PHP snippet:

add_action( 'after_setup_theme', 'tu_category_specific_post_navigation' );
function tu_category_specific_post_navigation() {
    add_filter( 'generate_category_post_navigation', '__return_true' );
}

Adding PHP:
https://docs.generatepress.com/article/adding-php/

Hi David!

Thank you, that is exactly, what I was looking for!

Kind regards
Wolfgang

You're welcome

This archived topic is closed to new replies.