D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
vblioqus
/
bitchats.net
/
wp-content
/
themes
/
blankslate
/
Filename :
comments.php
back
Copy
<div id="comments"> <?php if ( have_comments() ) : global $comments_by_type; $comments_by_type = separate_comments( $comments ); if ( !empty( $comments_by_type['comment'] ) ) : ?> <section id="comments-list" class="comments"> <h2 class="comments-title"><?php comments_number(); ?></h2> <?php if ( get_comment_pages_count() > 1 ) : ?> <nav id="comments-nav-above" class="comments-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Comments Navigation', 'blankslate' ); ?>"> <div class="paginated-comments-links"><?php paginate_comments_links(); ?></div> </nav> <?php endif; ?> <ul> <?php wp_list_comments( 'type=comment' ); ?> </ul> <?php if ( get_comment_pages_count() > 1 ) : ?> <nav id="comments-nav-below" class="comments-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Comments Navigation', 'blankslate' ); ?>"> <div class="paginated-comments-links"><?php paginate_comments_links(); ?></div> </nav> <?php endif; ?> </section> <?php endif; if ( !empty( $comments_by_type['pings'] ) ) : $ping_count = count( $comments_by_type['pings'] ); ?> <section id="trackbacks-list" class="comments"> <h2 class="comments-title"><?php echo '<span class="ping-count">' . esc_html( $ping_count ) . '</span> ' . esc_html( _nx( 'Trackback or Pingback', 'Trackbacks and Pingbacks', $ping_count, 'comments count', 'blankslate' ) ); ?></h2> <ul> <?php wp_list_comments( 'type=pings&callback=blankslate_custom_pings' ); ?> </ul> </section> <?php endif; endif; if ( comments_open() && !post_password_required() ) { comment_form(); } ?> </div>