Thank you for your quick reply, I have just copied the:
function gk_paginate_navigation() {
global $wp_query;
$big = 999999999; // need an unlikely integer
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
$args = array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?page=%#%',
'total' => $wp_query->max_num_pages,
'current' => max( 1, get_query_var('paged') ),
'show_all' => True,
'prev_next' => True,
'prev_text' => __('« Previous', GKTPLNAME),
'next_text' => __('Next »', GKTPLNAME),
);
echo paginate_links( $args );
}
and paste it into either /wp-content/themes/News2/gavern/user.functions.php or /wp-content/themes/News2/gavern/helpers/helpers.layout.fragments.php
None seems to be working