forked from mirror/_s
_s: Move role declaration to the end of the element for consistency.
This commit is contained in:
parent
fa3d86936a
commit
ad57a4af29
|
@ -35,7 +35,7 @@
|
|||
</h2>
|
||||
|
||||
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
|
||||
<nav id="comment-nav-above" role="navigation" class="navigation-comment">
|
||||
<nav id="comment-nav-above" class="navigation-comment" role="navigation">
|
||||
<h1 class="assistive-text"><?php _e( 'Comment navigation', '_s' ); ?></h1>
|
||||
<div class="previous"><?php previous_comments_link( __( '← Older Comments', '_s' ) ); ?></div>
|
||||
<div class="next"><?php next_comments_link( __( 'Newer Comments →', '_s' ) ); ?></div>
|
||||
|
@ -55,7 +55,7 @@
|
|||
</ol><!-- .commentlist -->
|
||||
|
||||
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
|
||||
<nav id="comment-nav-below" role="navigation" class="navigation-comment">
|
||||
<nav id="comment-nav-below" class="navigation-comment" role="navigation">
|
||||
<h1 class="assistive-text"><?php _e( 'Comment navigation', '_s' ); ?></h1>
|
||||
<div class="previous"><?php previous_comments_link( __( '← Older Comments', '_s' ) ); ?></div>
|
||||
<div class="next"><?php next_comments_link( __( 'Newer Comments →', '_s' ) ); ?></div>
|
||||
|
|
Reference in New Issue