File: /datos/www/expodubai.colombia.co/wp-content/themes/osapa/comments.php
<?php
if ( post_password_required() ) {
return;
}
?>
<div id="comments" class="comments-area">
<?php
if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
echo esc_html_e('Comments ', 'osapa');
echo '('.get_comments_number().')';
?>
</h2>
<ol class="comment-list">
<?php
wp_list_comments( array(
'avatar_size' => 100,
'style' => 'ol',
'short_ping' => true,
'reply_text' => ftc_get_svg( array( 'icon' => 'mail-reply' ) ) . esc_html__( 'Reply', 'osapa' ),
) );
?>
</ol>
<div class="commentPaginate">
<?php paginate_comments_links( array('prev_text' => '« PREV', 'next_text' => 'NEXT »') ); ?>
</div>
<?php endif;
if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
<p class="no-comments"><?php echo esc_html_e( 'Comments are closed.', 'osapa' ); ?></p>
<?php
endif;
comment_form();
?>
</div><!-- #comments -->