forked from mirror/_s
Add "Next/Previous" text to single-post navigation in addition to post title.
This commit is contained in:
parent
9c0f5906c4
commit
4366f4018a
|
@ -116,6 +116,22 @@ msgstr ""
|
|||
msgid "Primary Menu"
|
||||
msgstr ""
|
||||
|
||||
#: single.php:21
|
||||
msgid "Previous Post"
|
||||
msgstr ""
|
||||
|
||||
#: single.php:21
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: single.php:22
|
||||
msgid "Next Post"
|
||||
msgstr ""
|
||||
|
||||
#: single.php:22
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: post date.
|
||||
#: inc/template-tags.php:29
|
||||
#, php-format
|
||||
|
|
|
@ -17,7 +17,10 @@ get_header(); ?>
|
|||
|
||||
get_template_part( 'template-parts/content', get_post_format() );
|
||||
|
||||
the_post_navigation();
|
||||
the_post_navigation( array(
|
||||
'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', '_s' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Previous', '_s' ) . '</span> <span class="nav-title">%title</span>',
|
||||
'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', '_s' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Next', '_s' ) . '</span> <span class="nav-title">%title</span>',
|
||||
) );
|
||||
|
||||
// If comments are open or we have at least one comment, load up the comment template.
|
||||
if ( comments_open() || get_comments_number() ) :
|
||||
|
|
Reference in New Issue