File: /home/sinanpasha/ru.sinanpasha.org/wp-content/themes/capital/comments.php
<div id="comments">
<?php if ( post_password_required() ) : ?>
<p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'wpzoom' ); ?></p>
<?php
/* Stop the rest of comments.php from being processed,
* but don't kill the script entirely -- we still have
* to fully load the template.
*/
return;
endif;
?>
<?php
// You can start editing here -- including this comment!
?>
<?php if ( have_comments() ) : ?>
<h3><?php comments_number(__('No Comments','wpzoom'), __('One Comment','wpzoom'), __('% Comments','wpzoom') );?></h3>
<ol class="commentlist">
<?php
/* Loop through and list the comments. Tell wp_list_comments()
* to use capital_comment() to format the comments.
* If you want to overload this in a child theme then you can
* define capital_comment() and that will be used instead.
* See capital_comment() in functions/theme/functions.php for more.
*/
wp_list_comments( array( 'callback' => 'capital_comment' ) );
?>
</ol>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
<div class="navigation">
<?php paginate_comments_links( array('prev_text' => ''.__( '<span class="meta-nav">←</span> Older Comments', 'wpzoom' ).'', 'next_text' => ''.__( 'Newer Comments <span class="meta-nav">→</span>', 'wpzoom' ).'') );?>
</div><!-- .navigation -->
<?php endif; // check for comment navigation ?>
<?php else : // or, if we don't have comments:
/* If there are no comments and comments are closed,
* let's leave a little note, shall we?
*/
if ( ! comments_open() ) :
?>
<p class="nocomments"><?php _e( 'Comments are closed.', 'wpzoom' ); ?></p>
<?php endif; // end ! comments_open() ?>
<?php endif; // end have_comments() ?>
<?php
$commenter = wp_get_current_commenter();
$req = get_option( 'require_name_email' );
$aria_req = ( $req ? " aria-required='true'" : '' );
$consent = empty( $commenter['comment_author_email'] ) ? '' : ' checked="checked"';
$custom_comment_form = array( 'fields' => apply_filters( 'comment_form_default_fields', array(
'author' => '<div class="form_fields"><p class="comment-form-author">' .
'<label for="author">' . __( 'Name:' , 'wpzoom' ) . '</label> ' .
'<input id="author" name="author" type="text" value="' .
esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' class="required" />' .
'' .
'</p>',
'email' => '<p class="comment-form-email">' .
'<label for="email">' . __( 'Email Address:' , 'wpzoom' ) . '</label> ' .
'<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' class="required email" />' .
'' .
'</p>',
'url' => '<p class="comment-form-url">' .
'<label for="url">' . __( 'Website:' , 'wpzoom' ) . '</label> ' .
'<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30"' . $aria_req . ' />' .
'</p></div><div class="clear"></div>',
'cookies' => '<p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"' . $consent . ' />' .
'<label for="wp-comment-cookies-consent">' . __( 'Save my name, email, and website in this browser for the next time I comment.', 'wpzoom' ) . '</label></p>'
) ),
'comment_field' => '<p class="comment-form-comment">' .
'<label for="comment">' . __( 'Message:' , 'wpzoom' ) . '</label> ' .
'<textarea id="comment" name="comment" cols="35" rows="5" aria-required="true" class="required"></textarea>' .
'</p><div class="clear"></div>',
'logged_in_as' => '<p class="logged-in-as">' . sprintf( __( 'Logged in as <a href="%1$s">%2$s</a>. <a href="%3$s">Log out?</a>', 'wpzoom' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink() ) ) ) . '</p>',
'title_reply' => __( 'Leave a Comment' , 'wpzoom' ),
'cancel_reply_link' => __( 'Cancel' , 'wpzoom' ),
'label_submit' => __( 'Post Comment' , 'wpzoom' ),
'comment_form_after' => '<div class="clear"></div>'
);
comment_form($custom_comment_form);
?>
</div><!-- #comments -->