Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #55020


Ignore:
Timestamp:
02/01/2022 04:11:06 PM (3 years ago)
Author:
sabernhardt
Comment:

Thanks for reporting and for following up! Yes, the change was intentional :)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #55020

    • Property Status changed from new to closed
    • Property Resolution changed from to wontfix
    • Property Milestone changed from Awaiting Review to
  • Ticket #55020 – Description

    initial v2  
    1 Upgrade from 5.8.3 to 5.9 and the role="navigation" is missing from nav elements which are produced with the_posts_pagination function.
     1Upgrade from 5.8.3 to 5.9 and the `role="navigation"` is missing from nav elements which are produced with `the_posts_pagination` function.
    22
    3 This causes CSS styles break which are defined with nav[role="navigation"].
     3This causes CSS styles break which are defined with `nav[role="navigation"]`.
    44
    55Example of the_posts_pagination:
    66
     7{{{
    78<?php the_posts_pagination( array('screen_reader_text' => __('More articles', 'nnn_theme'), 'type' => 'list', 'prev_text' => __('Previous page', 'nnn_theme'), 'next_text' => __('Next page', 'nnn_theme')) ); ?>
     9}}}