On this development site we have several pages of posts that paginate well here: https://da2017.lugerun.com/education-library/
On our mapped domain, we have the same content being shown but the pagination keeps redirecting back to page 1:
https://reeseharper.lugerun.com/for-dentists/education-library/
Here’s the php outputting the pagination:
<?php
$args['prev_text'] = '<i class="fa fa-angle-left" aria-hidden="true"></i>';
$args['next_text'] = '<i class="fa fa-angle-right" aria-hidden="true"></i>';
$args['type'] = 'list';
$args['current'] = max( 1, $paged );
$args['total'] = $query->max_num_pages;
// $args['base'] = 'https://reeseharper.lugerun.com/for-dentists/education-library/%_%';
echo paginate_links( $args );
?>
As you can see, I tried setting the “base” argument to be the mapped domain, but that wasn’t working so I commented it out. Also, just adding the pagination variable to the URL doesn’t work either:
https://reeseharper.lugerun.com/for-dentists/education-library/?paged=2