Make `previous_post_link()` Function Show The Post After Next i.e. Jump A Post
$current_id = get_the_ID(); $cpt = get_post_type(); $all_ids = get_posts(array( ‘fields’ => ‘ids’, ‘posts_per_page’ => -1, ‘post_type’ => $cpt, ‘order_by’ => ‘post_date’, ‘order’ => ‘ASC’, )); $prev_key = array_search($current_id, $all_ids) – 2; $next_key = array_search($current_id, $all_ids) + 2; if(array_key_exists($prev_key, $all_ids)){ $prev_link = get_the_permalink($all_ids[$prev_key]); echo $prev_link; } if(array_key_exists($next_key, $all_ids)){ $next_link = get_the_permalink($all_ids[$next_key]); echo $next_link; } So I … Read more