Make WordPress Core

Ticket #29808: 29808.12.diff

File 29808.12.diff, 4.6 KB (added by obenland, 10 years ago)
  • src/wp-content/themes/twentyfifteen/archive.php

     
    4545                        endwhile;
    4646
    4747                        // Previous/next page navigation.
    48                         the_pagination( array(
     48                        the_posts_pagination( array(
    4949                                'prev_text'          => __( 'Previous page', 'twentyfifteen' ),
    5050                                'next_text'          => __( 'Next page', 'twentyfifteen' ),
    5151                                'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>',
  • src/wp-content/themes/twentyfifteen/index.php

     
    4242                        endwhile;
    4343
    4444                        // Previous/next page navigation.
    45                         the_pagination( array(
     45                        the_posts_pagination( array(
    4646                                'prev_text'          => __( 'Previous page', 'twentyfifteen' ),
    4747                                'next_text'          => __( 'Next page', 'twentyfifteen' ),
    4848                                'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>',
  • src/wp-content/themes/twentyfifteen/search.php

     
    3434                        endwhile;
    3535
    3636                        // Previous/next page navigation.
    37                         the_pagination( array(
     37                        the_posts_pagination( array(
    3838                                'prev_text'          => __( 'Previous page', 'twentyfifteen' ),
    3939                                'next_text'          => __( 'Next page', 'twentyfifteen' ),
    4040                                'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>',
  • src/wp-includes/link-template.php

     
    22382238 * @global WP_Query $wp_query WordPress Query object.
    22392239 *
    22402240 * @param array $args {
    2241  *     Optional. Default paging navigation arguments. Default empty array.
     2241 *     Optional. Default posts navigation arguments. Default empty array.
    22422242 *
    22432243 *     @type string $prev_text          Anchor text to display in the previous posts link.
    22442244 *                                      Default 'Older posts'.
     
    22472247 *     @type string $screen_reader_text Screen reader text for nav element.
    22482248 *                                      Default 'Posts navigation'.
    22492249 * }
    2250  * @return string Markup for paging links.
     2250 * @return string Markup for posts links.
    22512251 */
    22522252function get_the_posts_navigation( $args = array() ) {
    22532253        $navigation = '';
     
    22712271                        $navigation .= '<div class="nav-next">' . $next_link . '</div>';
    22722272                }
    22732273
    2274                 $navigation = _navigation_markup( $navigation, 'paging-navigation', $args['screen_reader_text'] );
     2274                $navigation = _navigation_markup( $navigation, 'posts-navigation', $args['screen_reader_text'] );
    22752275        }
    22762276
    22772277        return $navigation;
     
    23032303 * }
    23042304 * @return string Markup for pagination links.
    23052305 */
    2306 function get_the_pagination( $args = array() ) {
     2306function get_the_posts_pagination( $args = array() ) {
    23072307        $navigation = '';
    23082308
    23092309        // Don't print empty markup if there's only one page.
     
    23342334 *
    23352335 * @since 4.1.0
    23362336 *
    2337  * @param array $args Optional. See {@see get_the_pagination()} for available arguments.
     2337 * @param array $args Optional. See {@see get_the_posts_pagination()} for available arguments.
    23382338 *                    Default empty array.
    23392339 */
    2340 function the_pagination( $args = array() ) {
    2341         echo get_the_pagination( $args );
     2340function the_posts_pagination( $args = array() ) {
     2341        echo get_the_posts_pagination( $args );
    23422342}
    23432343
    23442344/**
     
    23482348 * @access private
    23492349 *
    23502350 * @param string $links              Navigational links.
    2351  * @param string $class              Optional. Custom class for nav element. Default: 'paging-navigation'.
     2351 * @param string $class              Optional. Custom class for nav element. Default: 'posts-navigation'.
    23522352 * @param string $screen_reader_text Optional. Screen reader text for nav element. Default: 'Posts navigation'.
    23532353 * @return string Navigation template tag.
    23542354 */
    2355 function _navigation_markup( $links, $class = 'paging-navigation', $screen_reader_text = '' ) {
     2355function _navigation_markup( $links, $class = 'posts-navigation', $screen_reader_text = '' ) {
    23562356        if ( empty( $screen_reader_text ) ) {
    23572357                $screen_reader_text = __( 'Posts navigation' );
    23582358        }