Make WordPress Core

Ticket #37952: 37952.diff

File 37952.diff, 682 bytes (added by FlorianBrinkmann, 8 years ago)

Changes the contexts to "previous set of posts" and "next set of posts"

  • src/wp-includes/link-template.php

     
    25282528        if ( $GLOBALS['wp_query']->max_num_pages > 1 ) {
    25292529                $args = wp_parse_args( $args, array(
    25302530                        'mid_size'           => 1,
    2531                         'prev_text'          => _x( 'Previous', 'previous post' ),
    2532                         'next_text'          => _x( 'Next', 'next post' ),
     2531                        'prev_text'          => _x( 'Previous', 'previous set of posts' ),
     2532                        'next_text'          => _x( 'Next', 'next set of posts' ),
    25332533                        'screen_reader_text' => __( 'Posts navigation' ),
    25342534                ) );
    25352535