mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-12 13:44:21 +01:00
Twenty Fifteen: update archive pagination links to use aria-hidden
for better accessibility.
Props SergeyBiryukov, fixes #30152. Built from https://develop.svn.wordpress.org/trunk@30834 git-svn-id: http://core.svn.wordpress.org/trunk@30824 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b9bc6cc2dd
commit
ac1b60c018
@ -30,8 +30,12 @@ get_header(); ?>
|
||||
|
||||
// Previous/next post navigation.
|
||||
the_post_navigation( array(
|
||||
'next_text' => _x( '<span class="meta-nav">Next <span class="screen-reader-text">post: </span></span><span class="post-title">%title</span>', 'Next post link', 'twentyfifteen' ),
|
||||
'prev_text' => _x( '<span class="meta-nav">Previous <span class="screen-reader-text">post: </span></span><span class="post-title">%title</span>', 'Previous post link', 'twentyfifteen' )
|
||||
'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'twentyfifteen' ) . '</span> ' .
|
||||
'<span class="screen-reader-text">' . __( 'Next post:', 'twentyfifteen' ) . '</span> ' .
|
||||
'<span class="post-title">%title</span>',
|
||||
'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'twentyfifteen' ) . '</span> ' .
|
||||
'<span class="screen-reader-text">' . __( 'Previous post:', 'twentyfifteen' ) . '</span> ' .
|
||||
'<span class="post-title">%title</span>',
|
||||
) );
|
||||
|
||||
// End the loop.
|
||||
|
Loading…
Reference in New Issue
Block a user