diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index a3c285b850..61798c3798 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -2931,8 +2931,8 @@ function the_posts_navigation( $args = array() ) { * Optional. Default pagination arguments, see paginate_links(). * * @type string $screen_reader_text Screen reader text for navigation element. - * Default 'Posts navigation'. - * @type string $aria_label ARIA label text for the nav element. Default 'Posts'. + * Default 'Posts pagination'. + * @type string $aria_label ARIA label text for the nav element. Default 'Posts pagination'. * @type string $class Custom class for the nav element. Default 'pagination'. * } * @return string Markup for pagination links. @@ -2955,8 +2955,8 @@ function get_the_posts_pagination( $args = array() ) { 'mid_size' => 1, 'prev_text' => _x( 'Previous', 'previous set of posts' ), 'next_text' => _x( 'Next', 'next set of posts' ), - 'screen_reader_text' => __( 'Posts navigation' ), - 'aria_label' => __( 'Posts' ), + 'screen_reader_text' => __( 'Posts pagination' ), + 'aria_label' => __( 'Posts pagination' ), 'class' => 'pagination', ) ); @@ -3367,8 +3367,8 @@ function the_comments_navigation( $args = array() ) { * @param array $args { * Optional. Default pagination arguments. * - * @type string $screen_reader_text Screen reader text for the nav element. Default 'Comments navigation'. - * @type string $aria_label ARIA label text for the nav element. Default 'Comments'. + * @type string $screen_reader_text Screen reader text for the nav element. Default 'Comments pagination'. + * @type string $aria_label ARIA label text for the nav element. Default 'Comments pagination'. * @type string $class Custom class for the nav element. Default 'comments-pagination'. * } * @return string Markup for pagination links. @@ -3384,8 +3384,8 @@ function get_the_comments_pagination( $args = array() ) { $args = wp_parse_args( $args, array( - 'screen_reader_text' => __( 'Comments navigation' ), - 'aria_label' => __( 'Comments' ), + 'screen_reader_text' => __( 'Comments pagination' ), + 'aria_label' => __( 'Comments pagination' ), 'class' => 'comments-pagination', ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 3b555cb823..29712c340a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-59112'; +$wp_version = '6.7-alpha-59113'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.