Skip to content

Commit

Permalink
Merge pull request #26 from stacyk/master
Browse files Browse the repository at this point in the history
bring consistent with Automattic's _s
  • Loading branch information
gregrickaby committed Apr 13, 2015
2 parents a742f30 + e9f33c0 commit e4ed7bf
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,14 @@
</ol><!-- .comment-list -->

<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-below" class="comment-navigation" role="navigation">
<h1 class="screen-reader-text"><?php _e( 'Comment navigation', '_s' ); ?></h1>
<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', '_s' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', '_s' ) ); ?></div>
<nav id="comment-nav-below" class="navigation comment-navigation" role="navigation">
<h2 class="screen-reader-text"><?php _e( 'Comment navigation', '_s' ); ?></h2>
<div class="nav-links">

<div class="nav-previous"><?php previous_comments_link( __( 'Older Comments', '_s' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments', '_s' ) ); ?></div>

</div><!-- .nav-links -->
</nav><!-- #comment-nav-below -->
<?php endif; // check for comment navigation ?>

Expand Down

0 comments on commit e4ed7bf

Please sign in to comment.