From bdc89a9ceeb7054c69c9971a1194a45538d129db Mon Sep 17 00:00:00 2001 From: Jared Tulayan <2lyNJ.E@gmail.com> Date: Tue, 2 Oct 2018 15:37:45 -0400 Subject: [PATCH] Change prev and next pagination text in blog feed --- home.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home.php b/home.php index 3ba4114..7193824 100644 --- a/home.php +++ b/home.php @@ -23,8 +23,8 @@ echo paginate_links( array( 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), 'format' => '?paged=%#%', - 'prev_text' => __('« Prev'), - 'next_text' => __('Next »'), + 'prev_text' => __('«'), + 'next_text' => __('»'), 'current' => max( 1, get_query_var('paged') ), 'total' => $wp_query->max_num_pages ) );