Getting pagination for second loop to work on single.php
Here’s a working example of a secondary loop with pagination that can be used on singular posts. WP_Query is typically a better way to go than query_posts(). Your permalink settings shouldn’t be a factor here. <?php $my_query = new WP_Query( [ ‘posts_per_page’ => 3, ‘paged’ => ( get_query_var( ‘paged’ ) ) ? get_query_var( ‘paged’ ) … Read more