diff --git a/single.php b/single.php index ff5f224..5c1570c 100644 --- a/single.php +++ b/single.php @@ -14,7 +14,11 @@ while ( have_posts() ) { the_post(); get_template_part( 'content', 'single' ); - the_post_navigation(); + $navigation_args = array( + 'prev_text' => 'Previous post: %title', + 'next_text' => 'Next post: %title' + ); + the_post_navigation( $navigation_args ); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) {