str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'total' => $wp_query->max_num_pages,
'current' => max( 1, get_query_var('paged') ),
'show_all' => False,
'prev_next' => True,
'prev_text' => '',
'next_text' => '',
'before_page_number' => ''.$translated.' '
);
echo paginate_links( $args);
}
endif;
if ( ! function_exists( 'amazing_blog_posts_navigation' ) ) :
/**
* Posts navigation options
*
* @since Bizlight 1.0.0
*
* @param null
* @return int
*/
function amazing_blog_posts_navigation() {
the_posts_navigation();
}
endif;
add_action( 'amazing_blog_action_posts_navigation', 'amazing_blog_posts_navigation' );