Display posts from the same category using next/previous post link
Here is the code to get category based previous and next links on posts: <?php $post_id = $post->ID; // current post ID $cat = get_the_category(); $current_cat_id = $cat[0]->cat_ID; // current category ID $args = array( ‘category’ => $current_cat_id, ‘orderby’ => ‘post_date’, ‘order’ => ‘DESC’ ); $posts = get_posts( $args ); // get IDs of posts … Read more