Remove the word "Post", as it will not apply for Custom Post Types.

This commit is contained in:
alaczek 2017-07-07 10:26:45 +10:00
parent 4366f4018a
commit 3de72a1cbd
2 changed files with 2 additions and 10 deletions

View File

@ -116,18 +116,10 @@ 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 ""

View File

@ -18,8 +18,8 @@ get_header(); ?>
get_template_part( 'template-parts/content', get_post_format() );
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>',
'prev_text' => '<span class="screen-reader-text">' . __( 'Previous', '_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', '_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.