0byt3m1n1
Path:
/
var
/
lib
/
vz
/
www
/
clients
/
client6
/
web11
/
web
/
wp-content
/
themes
/
virtue
/
templates
/
[
Home
]
File: comments.php
<?php if ( post_password_required() ) { return; } if ( have_comments() && ( comments_open() || get_comments_number() ) ) : ?> <section id="comments"> <h3 class="comments-title"> <?php $comments_number = get_comments_number(); if ( '1' === $comments_number ) { esc_html__( 'One Response', 'virtue' ); } else { /* translators: %d: Response Number */ printf( esc_html( _n( '%d Response', '%d Responses', $comments_number, 'virtue' ) ), esc_html( $comments_number ) ); } ?> </h3> <ol class="media-list comment-list"> <?php $args = array( 'walker' => new Virtue_Walker_Comment, 'max_depth' => '', 'style' => 'ul', 'callback' => null, 'end-callback' => null, 'type' => 'all', 'reply_text' => 'Reply', 'page' => '', 'per_page' => '', 'avatar_size' => 36, 'reverse_top_level' => null, 'reverse_children' => '', 'format' => 'html5', 'short_ping' => false, 'echo' => true ); wp_list_comments( $args ); ?> </ol> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <nav> <ul class="pager"> <?php if ( get_previous_comments_link() ) : ?> <li class="previous"><?php previous_comments_link( __( '← Older comments', 'virtue' ) ); ?></li> <?php endif; if ( get_next_comments_link() ) : ?> <li class="next"><?php next_comments_link( __( 'Newer comments →', 'virtue' ) ); ?></li> <?php endif; ?> </ul> </nav> <?php endif; if ( ! comments_open() && !is_page() && post_type_supports( get_post_type(), 'comments' ) ) : global $virtue; if( isset( $virtue[ 'close_comments' ] ) ) { $show_closed_comment = $virtue[ 'close_comments' ]; } else { $show_closed_comment = 1; } if( 1 == $show_closed_comment ) { ?> <div class="alert"> <?php esc_html_e( 'Comments are closed.', 'virtue' ); ?> </div> <?php } endif; ?> </section><!-- /#comments --> <?php endif; if ( ! have_comments() && !comments_open() && !is_page() && post_type_supports( get_post_type(), 'comments' ) ) : global $virtue; if( isset( $virtue[ 'close_comments' ] ) ) { $show_closed_comment = $virtue[ 'close_comments' ]; } else { $show_closed_comment = 1; } if( 1 == $show_closed_comment ){ ?> <section id="comments"> <div class="alert"> <?php esc_html_e( 'Comments are closed.', 'virtue' ); ?> </div> </section><!-- /#comments --> <?php } endif; if ( comments_open() ) : ?> <section id="respond"> <?php comment_form(); ?> </section><!-- /#respond --> <?php endif; ?>