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.
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
YAY! Thank you so much Yigit. That worked perfectly.