wordpress pagination
Displays a paginated navigation to next/previous set of posts, when applicable. Displays pagination with additional page links <?php the_posts_pagination( array( ‘mid_size’ => 2 ) ); ?> Displays pagination with alternative prev/next text <?php the_posts_pagination( array( ‘format’ => ‘page/%#%/’, ‘mid_size’ => 2, ‘prev_text’ => __( ‘<span class=”icon-left”></span>’, ‘textdomain’ ), //set your back icon ‘next_text’ => __( […]