Tagged: arrows, categories, category, exclude, post nav
Hey,
is it somehow possible to exlude specific portfolio entries in the post navigation?
We have a category in our portfolio entries we’d like to exclude from those arrow post nav buttons.
So for example:
http://www.example.com/portfolio_entries/exclude_this_category/
http://www.example.com/portfolio_entries/but_still_show_this_cat/
Big thanks in advance!
Hey emilconsor,
Thank you for the inquiry.
Yes, this should be possible with this filter.
add_filter("avf_post_nav_settings", function($settings) {
$settings["excluded_terms"] = array(1, 2, 3);
return $settings;
}, 10, 1);
This will exclude items that belong to the categories with the ID 1, 2 and 3.
Best regards,
Ismael
Hey Ismael,
that did the trick! Appreciate it.
Regards