Post navigation on single custom post type within same custom taxonomy
-
Hi
Is there a way to show post navigation with the same taxonomy for custom post type?
I tried the following code but it works only for Posts and not for CPTs.
<?php
function previous_posts_from_same_category( $args ) {
$args['in_same_term'] = true;
return $args;
}
add_filter( 'astra_single_post_navigation', 'previous_posts_from_same_category' );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.