Is something wrong with the theme code? I haven’t altered it at all.
/* PAGINATION
================================================== */
function pagination() {
global $wp_query;
$big = 999999999; // need an unlikely integer
return paginate_links( array(
‘base’ => str_replace( $big, ‘%#%’, get_pagenum_link( $big ) ),
‘format’ => ‘?paged=%#%’,
‘current’ => max( 1, get_query_var(‘paged’) ),
‘total’ => $wp_query->max_num_pages
) );
}