Hi there,
on the left and right side of the blog posts there are arrows for previous/next entry.
I have different categories for my blog entries and want to stay in that category (!) using the navigation arrows.
What do I have to do, to activate this?
Regards, Jochen
Hey Jochen,
Refer to:
https://kriesi.at/support/topic/avia_post_nav-function-not-cycling-categories-even-when-set-to-true/
Best regards,
Josue
Hi & thank you! -> these are the working lines …
add_filter(‘avia_post_nav_settings’,’avia_same_category_filter’, 10, 1);
function avia_same_category_filter($settings)
{
$settings[‘same_category’] = true;
return $settings;
}