Created
November 18, 2014 22:01
-
-
Save devinsays/39ffd1268e336ec9a582 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> | |
<nav id="comment-nav-above" class="pagination comment-pagination" role="navigation"> | |
<h1 class="screen-reader-text"><?php _e( 'Comment navigation', 'cascade' ); ?></h1> | |
<span class="page-numbers"><?php printf( __( 'Page %1$s of %2$s', 'cascade' ), ( get_query_var( 'cpage' ) ? absint( get_query_var( 'cpage' ) ) : 1 ), get_comment_pages_count() ); ?></span> | |
<?php paginate_comments_links(); ?> | |
</nav><!-- .comment-navigation --> | |
<?php endif; // check for comment navigation ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment