12345678910111213141516171819 |
- <div id="comments" class="comments-area">
- <?php if ( have_comments() ) : ?>
- <ol class="commentlist">
- <?php wp_list_comments( array( 'callback' => 'dw_comment', 'style' => 'ol' ) ); ?>
- </ol>
- <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
- <nav id="comment-nav-below" class="navigation" role="navigation">
- <h1 class="assistive-text section-heading"><?php _e( 'Comment navigation', 'twentytwelve' ); ?></h1>
- <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'twentytwelve' ) ); ?></div>
- <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'twentytwelve' ) ); ?></div>
- </nav>
- <?php endif;?>
- <?php
- if ( ! comments_open() && get_comments_number() ) : ?>
- <p class="nocomments"><?php _e( 'Comments are closed.' , 'twentytwelve' ); ?></p>
- <?php endif; ?>
- <?php endif;?>
- <?php comment_form(); ?>
- </div>
|