%PDF- %PDF-
Direktori : /var/www/html/qendrasteps/wp-content/themes/tm-heli/ |
Current File : /var/www/html/qendrasteps/wp-content/themes/tm-heli/comments.php |
<?php /** * The template for displaying comments. * * The area of the page that contains both current comments * and the comment form. * * @package thememove */ /* * 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 printf( // WPCS: XSS OK. esc_html( _nx( 'One comment', '%1$s comments', get_comments_number(), 'comments title', 'tm-heli' ) ), number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' ); ?> </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', 'tm-heli' ); ?></h2> <div class="nav-links"> <div class="nav-previous"><?php previous_comments_link( esc_html( __( 'Older Comments', 'tm-heli' ) ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html( __( 'Newer Comments', 'tm-heli' ) ) ); ?></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', 'callback' => 'tm_heli_comment', 'short_ping' => true, 'avatar_size' => 100 ) ); ?> </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', 'tm-heli' ); ?></h2> <div class="nav-links"> <div class="nav-previous"><?php previous_comments_link( esc_html( __( 'Older Comments', 'tm-heli' ) ) ); ?></div> <div class="nav-next"><?php next_comments_link( esc_html( __( 'Newer Comments', 'tm-heli' ) ) ); ?></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() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?> <p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'tm-heli' ); ?></p> <?php endif; ?> <?php $commenter = wp_get_current_commenter(); $req = get_option( 'require_name_email' ); $aria_req = ( $req ? " aria-required='true'" : '' ); $fields = array( 'author' => '<div class="col-md-4"><p class="comment-form-author">' . '<input id="author" placeholder="' . esc_attr( __( 'Name *', 'tm-heli' ) ) . '" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p></div>', 'email' => '<div class="col-md-4"><p class="comment-form-email">' . '<input id="email" placeholder="' . esc_attr( __( 'Email *', 'tm-heli' ) ) . '" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p></div>', 'url' => '<div class="col-md-4"><p class="comment-form-url">' . '<input id="url" placeholder="' . esc_attr( __( 'Website', 'tm-heli' ) ) . '" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p></div>', ); $comments_args = array( // change the title of send button 'label_submit' => 'Submit', // change the title of the reply section 'title_reply' => 'Write a Reply or Comment', // remove "Text or HTML to be displayed after the set of comment fields" 'comment_notes_after' => '', 'comment_notes_before' => '', 'fields' => apply_filters( 'comment_form_default_fields', $fields ), 'comment_field' => '<div class="col-md-12"><p class="comment-form-comment"><textarea id="comment" placeholder="' . esc_attr( __( 'Comment *', 'tm-heli' ) ) . '" name="comment" aria-required="true"></textarea></p></div>', ); comment_form( $comments_args ); ?> </div><!-- #comments -->