Changes between Initial Version and Version 2 of Ticket #55020
- Timestamp:
- 02/01/2022 04:11:06 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #55020
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
wontfix
-
Property
Milestone
changed from
Awaiting Review
to
-
Property
Status
changed from
-
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_paginationfunction.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. 2 2 3 This causes CSS styles break which are defined with nav[role="navigation"].3 This causes CSS styles break which are defined with `nav[role="navigation"]`. 4 4 5 5 Example of the_posts_pagination: 6 6 7 {{{ 7 8 <?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 }}}