Pagination broken after using 2 loops to show content
So here is my attempt at it…though I don’t really have a good place to test it on my end, but I think it should work. (Fingers Crossed) <?php // First Page of Pagination – https://codex.wordpress.org/Function_Reference/is_paged if(!is_paged()){ $first_page = true; $query_args = array( ‘posts_per_page’ => ’11’, ); } else { $query_args = array( ‘posts_per_page’ => … Read more