Site logo

[Resolved] Pagination in posts for categorys

Home Forums Support [Resolved] Pagination in posts for categorys

Home Forums Support Pagination in posts for categorys

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1043183
    Carl

    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!

    #1043216
    David
    Staff
    Customer Support

    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/

    #1043221
    Carl

    Hi David!

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

    Kind regards
    Wolfgang

    #1043223
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.