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

    I have 3 main blog post categories. When you open up a blog post you are provided with the next and previous posts via a slide out on the right and left hand page. However, I don’t want the previous and next buttons to include ALL blog posts but only blog posts from the given category of the post I’m on. So if I’m on “Idea Jams” I want to see the next and previous “Idea Jams” not the next business advice post.

    Any suggestions on how to do this?

    See example in the link.

    #291016

    Hi lflask!

    Please add following code to Functions.php file in Appearance > Editor

      function category_specific_post_nav($settings){
          $settings['same_category'] = true;  
          return $settings;
      }
      add_filter('avia_post_nav_settings','category_specific_post_nav', 10);

    Best regards,
    Yigit

    #291239

    YAY! Thank you so much Yigit. That worked perfectly.

    #291275

    Hey!

    You are welcome, glad we could help! :)

    Cheers!
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Blog slide out for previous or next post’ is closed to new replies.