Display prev / next posts links from the same category with thumbnails in WordPress
So I asked ChatGPT and it comes with a working solution for me: <?php $prev_post = get_previous_post(true, ”, ‘listing_category’); if (!empty($prev_post)) : ?> <a href=”<?php echo get_permalink($prev_post->ID); ?>”> <?php echo get_the_post_thumbnail($prev_post->ID, ‘thumbnail’); ?> << <?php echo esc_html($prev_post->post_title); ?> </a> <?php endif; ?> </div> <div class=”next-post-link”> <?php $next_post = get_next_post(true, ”, ‘listing_category’); if (!empty($next_post)) : ?> … Read more