Pagination Not Working on `WP_Query` Archive Page
Note that with a custom WP_Query class instance like the $homePageArticles in your case, you should pass the max_num_pages property of the class instance to paginate_links(): paginate_links( array( ‘total’ => $homePageArticles->max_num_pages, ) ) However, that alone will not work with custom offset which breaks the pagination, hence for example you got this issue: it just … Read more