I have single CPT called portfolio. There approx 40 items. half have a category assigned of ‘projects’, and the other half ‘gallery’.
When you are on the single portfolio page, I would like to have post navigation only relate to posts of a certain category.
However when I am at the oldest post of ‘Gallery’ I can see the previous post link to ‘project’.
My code is below.. Am I missing something? thanks
<?php the_post_navigation(array(
'prev_text'=>__('previous project: %title'),
'next_text'=>__('next project: %title'),
'in_same_term' => true,
)); ?>