Created
November 9, 2015 21:43
-
-
Save nielsenrc/60c45e2cee0310b1118d to your computer and use it in GitHub Desktop.
Wordpress | Change Text of Previous and Next Links
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
the_post_navigation( array( | |
'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'twentyfifteen' ) . '</span> ' . | |
'<span class="screen-reader-text">' . __( 'Next post:', 'twentyfifteen' ) . '</span> ' . | |
'<span class="post-title">%title</span>', | |
'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'twentyfifteen' ) . '</span> ' . | |
'<span class="screen-reader-text">' . __( 'Previous post:', 'twentyfifteen' ) . '</span> ' . | |
'<span class="post-title">%title</span>', | |
) ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment