Twenty Fifteen: Our next-previous labels were reversed.

Props iamtakashi, fixes #30265.


Built from https://develop.svn.wordpress.org/trunk@30247


git-svn-id: http://core.svn.wordpress.org/trunk@30247 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Ian Stewart 2014-11-05 20:31:22 +00:00
parent 03ea739661
commit cd0ba24e95
2 changed files with 3 additions and 3 deletions

View File

@ -25,8 +25,8 @@ get_header(); ?>
<?php
the_post_navigation( array(
'next_text' => _x( '<span class="meta-nav">Previous</span><span class="post-title">%title</span>', 'Previous post link', 'twentyfifteen' ),
'prev_text' => _x( '<span class="meta-nav">Next</span><span class="post-title">%title</span>', 'Next post link', 'twentyfifteen' ),
'next_text' => _x( '<span class="meta-nav">Next</span><span class="post-title">%title</span>', 'Next post link', 'twentyfifteen' ),
'prev_text' => _x( '<span class="meta-nav">Previous</span><span class="post-title">%title</span>', 'Previous post link', 'twentyfifteen' ),
) );
?>

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-alpha-30246';
$wp_version = '4.1-alpha-30247';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.