File "comments.php"

Full Path: /home/tekvhqgl/public_html/wp-content/themes/digeco/inc/comments.php
File size: 3.39 KB
MIME-type: text/x-php
Charset: utf-8

<?php
if ( post_password_required() ) {
    return;
}
?>
<div id="comments" class="comments-area single-blog-bottom">
    <?php
		if ( have_comments() ):
		$digeco_comment_count = get_comments_number();
		$digeco_comments_text = number_format_i18n( $digeco_comment_count ) . ' ';
		if ( $digeco_comment_count > 1 && $digeco_comment_count != 0 ) {
			$digeco_comments_text .= esc_html__( 'Comments', 'digeco' );
		} else if ( $digeco_comment_count == 0 ) {
			$digeco_comments_text .= esc_html__( 'Comment', 'digeco' );
		} else {
			$digeco_comments_text .= esc_html__( 'Comment', 'digeco' );
		}
	?>
		<h4><?php echo esc_html( $digeco_comments_text );?></h4>
	<?php
		$digeco_avatar = get_option( 'show_avatars' );
	?>
		<ul class="comment-list<?php echo empty( $digeco_avatar ) ? ' avatar-disabled' : '';?>">
		<?php
			wp_list_comments(
				array(
					'style'             => 'ul',
					'callback'          => 'DigecoTheme_Helper::comments_callback',
					'reply_text'        => esc_html__( 'Reply', 'digeco' ),
					'avatar_size'       => 105,
					'format'            => 'html5',
					)
				);
		?>
		</ul>
		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
			<nav class="pagination-area comment-navigation">
				<ul>
					<li><?php previous_comments_link( esc_html__( 'Older Comments', 'digeco' ) ); ?></li>
					<li><?php next_comments_link( esc_html__( 'Newer Comments', 'digeco' ) ); ?></li>
				</ul>
			</nav><!-- #comment-nav-below -->
		<?php endif; // Check for comment navigation.?>

	<?php endif; ?>

	<?php if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
		<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'digeco' ); ?></p>
	<?php endif;?>
	<div>
	<?php
		$digeco_commenter = wp_get_current_commenter();
		$digeco_req = get_option( 'require_name_email' );
		$digeco_aria_req = ( $digeco_req ? " required" : '' );

		$digeco_fields =  array(
			'author' =>
			'<div class="row"><div class="col-sm-6"><div class="form-group comment-form-author"><input type="text" id="author" name="author" value="' . esc_attr( $digeco_commenter['comment_author'] ) . '" placeholder="'. esc_attr__( 'Your Name', 'digeco' ).( $digeco_req ? ' *' : '' ).'" class="form-control"' . $digeco_aria_req . '></div></div>',

			'email' =>
			'<div class="col-sm-6 comment-form-email"><div class="form-group"><input id="email" name="email" type="email" value="' . esc_attr(  $digeco_commenter['comment_author_email'] ) . '" class="form-control" placeholder="'. esc_attr__( 'Your Email', 'digeco' ).( $digeco_req ? ' *' : '' ).'"' . $digeco_aria_req . '></div></div></div>',
		);

		$digeco_args = array(
			'class_submit'      => 'submit btn-send ghost-on-hover-btn',
			'submit_field'      => '<div class="form-group form-submit">%1$s %2$s</div>',
			'comment_field'     =>  '<div class="form-group comment-form-comment"><textarea id="comment" name="comment" required placeholder="'.esc_attr__( 'Your Comment *', 'digeco' ).'" class="textarea form-control" rows="10" cols="40"></textarea></div>',
			'title_reply_before' => '<h4 id="reply-title" class="comment-reply-title">',
			'title_reply_after' => '</h4>',
			'fields' => apply_filters( 'comment_form_default_fields', $digeco_fields ),
		);
	?>
	<?php comment_form( $digeco_args );?>
	</div>
</div>