custom post type paging not working past page 3
Don’t run custom queries in the template to modify query parameters. The main query runs before the template is loaded, doing this is a waste of resources and introduces pagination issues, as you have discovered. Remove your custom WP_Query, restore the normal loop, and use pre_get_posts to modify query parameters before the query is run. … Read more