From 779c351f2dbb0240f3ed5a914c1b806aedf80cc1 Mon Sep 17 00:00:00 2001 From: Elliot Date: Mon, 22 May 2017 12:26:07 +0100 Subject: [PATCH] Pagination Amend --- inc/pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/pagination.php b/inc/pagination.php index 6127aaa..cf07258 100644 --- a/inc/pagination.php +++ b/inc/pagination.php @@ -53,7 +53,7 @@ function understrap_pagination() { /** Previous Post Link */ if ( get_previous_posts_link() ) { - printf( '
  • %1$s
  • ' . "\n", + printf( '
  • %1$s
  • ' . "\n", get_previous_posts_link( 'Previous page' ) ); } @@ -72,7 +72,7 @@ function understrap_pagination() { // Next Post Link. if ( get_next_posts_link() ) { - printf( '
  • %s
  • ' . "\n", + printf( '
  • %s
  • ' . "\n", get_next_posts_link( 'Next page' ) ); }