We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f25fc03 commit 4400de6Copy full SHA for 4400de6
app/code/Magento/Theme/view/frontend/templates/html/pager.phtml
@@ -61,6 +61,7 @@
61
<li class="item">
62
<a class="page previous jump"
63
title=""
64
+ aria-label="Skip to page <?= $block->escapeHtml($block->getPreviousJumpPage()) ?>"
65
href="<?= $block->escapeUrl($block->getPreviousJumpUrl()) ?>">
66
<span>...</span>
67
</a>
@@ -87,7 +88,10 @@
87
88
89
<?php if ($block->canShowNextJump()): ?>
90
- <a class="page next jump" title="" href="<?= $block->escapeUrl($block->getNextJumpUrl()) ?>">
91
+ <a class="page next jump"
92
+ title=""
93
+ aria-label="Skip to page <?= $block->escapeHtml($block->getNextJumpPage()) ?>"
94
+ href="<?= $block->escapeUrl($block->getNextJumpUrl()) ?>">
95
96
97
</li>
0 commit comments