Current Path : /home/church/www/mekhimalachi.org/wp-content/themes/mekhi/ |
Current File : /home/church/www/mekhimalachi.org/wp-content/themes/mekhi/comments.php |
<?php /** * The template for displaying comments. * * This is the template that displays the area of the page that contains both the current comments * and the comment form. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Refru */ /* * If the current post is protected by a password and * the visitor has not yet entered the password we will * return early without loading the comments. */ if ( post_password_required() ) { return; } ?> <div id="comments" class="comments-area"> <?php // You can start editing here -- including this comment! ?> <?php if ( have_comments() ): ?> <h2 class="comments-title"> <?php $comments_number = get_comments_number(); if ( '1' === $comments_number ) { /* translators: %s: post title */ printf( esc_html_x( 'One Reply to “%s”', 'comments title', 'refru' ), get_the_title() ); } else { printf( /* translators: 1: number of comments, 2: post title */ esc_html( _nx( '%1$s Reply to “%2$s”', '%1$s Replies to “%2$s”', $comments_number, 'comments title', 'refru' ) ), esc_html( number_format_i18n( $comments_number ) ), get_the_title() ); } ?> </h2> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ): // Are there comments to navigate through? ?> <nav id="comment-nav-above" class="navigation comment-navigation"> <h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'refru' ); ?></h2> <div class="nav-links"> <div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'refru' ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'refru' ) ); ?></div> </div><!-- .nav-links --> </nav><!-- #comment-nav-above --> <?php endif; // Check for comment navigation. ?> <ol class="comment-list"> <?php wp_list_comments( array( 'style' => 'ol', 'short_ping' => true, ) ); ?> </ol><!-- .comment-list --> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ): // Are there comments to navigate through? ?> <nav id="comment-nav-below" class="navigation comment-navigation"> <h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'refru' ); ?></h2> <div class="nav-links"> <div class="nav-previous"><?php previous_comments_link( esc_html__( 'Older Comments', 'refru' ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html__( 'Newer Comments', 'refru' ) ); ?></div> </div><!-- .nav-links --> </nav><!-- #comment-nav-below --> <?php endif; // Check for comment navigation. ?> <?php endif; // Check for have_comments(). ?> <?php // If comments are closed and there are comments, let's leave a little note, shall we? if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ): ?> <p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'refru' ); ?></p> <?php endif; ?> <?php $commenter = wp_get_current_commenter(); $req = get_option( 'require_name_email' ); $aria_req = ( $req ? " aria-required='true'" : '' ); $comments_args = array( // remove "Text or HTML to be displayed after the set of comment fields" 'comment_notes_after' => '', // redefine your own textarea (the comment body) 'comment_field' => '<div class="clearfix"></div><div class="input-wrap textarea"> <label class="control-label" for="comment">' . esc_html__( 'Comment', 'refru' ) . '</label> <div class="controls-wrap"> <textarea class="input-xlarge" name="comment" id="comment" rows="3"></textarea> </div> </div>', 'id_submit' => 'submit-respond', 'fields' => apply_filters( 'refru_comment_form_default_fields', array( 'author' => '<div class="input-wrap"> <label class="control-label" for="author">' . esc_html__( 'Name', 'refru' ) . '' . ( $req ? ' (*)' : '' ) . '</label> <div class="controls-wrap"> <i class="fa fa-user"></i> <input class="input-xlarge" type="text" name="author" id="author" value="' . esc_attr( $comment_author ) . '" size="22" ' . $aria_req . ' /> </div> </div>', 'email' => '<div class="input-wrap"> <label class="control-label" for="email">' . esc_html__( 'Email', 'refru' ) . '' . ( $req ? ' (*)' : '' ) . '</label> <div class="controls-wrap"> <i class="fa fa-envelope"></i> <input class="input-xlarge" type="text" name="email" id="email" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="22" ' . $aria_req . ' /> </div> </div>', 'url' => '<div class="input-wrap"> <label class="control-label" for="url">' . esc_html__( 'Website', 'refru' ) . '</label> <div class="controls-wrap"> <i class="fa fa-link"></i> <input class="input-xlarge" type="text" name="url" id="url" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="22" /> </div> </div>', ) ), ); comment_form( $comments_args ); ?> </div><!-- #comments -->