with this code
paginate_links(
array(
'base' => @add_query_arg('page', '%#%'),
'format' => '?page=%#%&a='.$a,
)
)
looks output like this
<a class="page-numbers" href="/wordpress/something/?page=2;a=1">2</a>
But when I click on it my url goes to www.example.com/something/2/?a=1
is it possible to change it into www.example.com/something/?page=2&a=1
?
Thanks
Try this. You can disable redirection by category name or page name or whatever you choose.