Filter by category "next" and "previous" article

Posted in: Newspaper
Post count: 5

Hi,

I’d like to have the theme filter per category the “previous” and “next” article link at the bottom of each of my blog article. I noticed that it does not filter per category and only filter by date.

Is there any way to do that in the menus? If not, I am a programmer, just tell me which file I should modify and what to be careful about when doing so thanks.

Alain

Post count: 20688

Hi,

The theme uses these functions for the next/prev posts
https://codex.wordpress.org/Function_Reference/get_previous_post
https://codex.wordpress.org/Function_Reference/get_next_post
Located here in the theme – https://www.screencast.com/t/kN8hHgcM
You would have to experiment and make tests with the parameters the function accepts based on what you are trying to achieve, and check the results. More here
https://developer.wordpress.org/reference/functions/get_next_post/

Thanks

Post count: 5

Alright, it is working, I just changed both calls to

$next_post = get_next_post( $in_same_term = true, $excluded_terms = ”, $taxonomy = ‘category’ );
$prev_post = get_previous_post( $in_same_term = true, $excluded_terms = ”, $taxonomy = ‘category’ );

Thanks

Post count: 4

please is there a code to set this to display articles that has same tags?

Post count: 35449

Hi,

Depend where you want to filter the post after tag, you can use tagDiv Composer click on blocks and check the filter tab -> https://i.imgur.com/h584PGX.png -> https://i.imgur.com/p2IrP9n.png
If this is not what you mean, please provide some more dentists and some screenshots

Thank you!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.