2010-02-07 11:16:26 -05:00
< div id = " comments " >
< ? php
// Do not delete these lines
$req = get_option ( 'require_name_email' ); // Checks if fields are required.
if ( 'comments.php' == basename ( $_SERVER [ 'SCRIPT_FILENAME' ]) )
die ( 'Please do not load this page directly. Thanks!' );
2010-02-08 13:24:01 -05:00
if ( post_password_required () ) :
2010-02-07 11:16:26 -05:00
?>
< div class = " nopassword " >< ? php _e ( 'This post is password protected. Enter the password to view any comments.' , 'twentyten' ) ?> </div>
</ div ><!-- . comments -->
< ? php
return ;
endif ;
?>
< ? php
// You can start editing here -- including this comment!
?>
< ? php if ( have_comments () ) : ?>
2010-02-08 12:59:08 -05:00
< h3 id = " comments-title " >< ? php comments_number ( __ ( 'No Responses to' , 'twentyten' ), __ ( 'One Response to' , 'twentyten' ), __ ( '% Responses to' , 'twentyten' ) ); ?> <em><?php the_title(); ?></em></h3>
2010-02-07 11:16:26 -05:00
< ? php $total_pages = get_comment_pages_count (); if ( $total_pages > 1 ) : // are there comments to navigate through ?>
< div class = " navigation " >
< div class = " nav-previous " >< ? php previous_comments_link ( __ ( '← Older Comments' , 'twentyten' ) ) ?> </div>
< div class = " nav-next " >< ? php next_comments_link ( __ ( 'Newer Comments →' , 'twentyten' ) ) ?> </div>
</ div >
2010-02-08 12:59:08 -05:00
< ? php endif ; // check for comment navigation ?>
2010-02-07 11:16:26 -05:00
< ol class = " commentlist " >
< ? php wp_list_comments ( array ( 'callback' => 'twentyten_comment' ) ); ?>
</ ol >
< ? php $total_pages = get_comment_pages_count (); if ( $total_pages > 1 ) : // are there comments to navigate through ?>
< div class = " navigation " >
< div class = " nav-previous " >< ? php previous_comments_link ( __ ( '← Older Comments' , 'twentyten' ) ) ?> </div>
< div class = " nav-next " >< ? php next_comments_link ( __ ( 'Newer Comments →' , 'twentyten' ) ) ?> </div>
</ div >
2010-02-08 12:59:08 -05:00
< ? php endif ; // check for comment navigation ?>
2010-02-07 11:16:26 -05:00
< ? php else : // this is displayed if there are no comments so far ?>
2010-02-08 12:59:08 -05:00
< ? php if ( comments_open () ) : // If comments are open, but there are no comments ?>
2010-02-07 11:16:26 -05:00
< ? php else : // if comments are closed ?>
2010-02-08 12:59:08 -05:00
< p class = " nocomments " >< ? php _e ( 'Comments are closed.' , 'twentyten' ); ?> </p>
2010-02-07 11:16:26 -05:00
< ? php endif ; ?>
< ? php endif ; ?>
< ? php if ( comments_open () ) : ?>
< div id = " respond " >
2010-02-08 12:59:08 -05:00
< h3 id = " reply-title " >< ? php comment_form_title ( __ ( 'Leave a Reply' , 'twentyten' ), __ ( 'Leave a Reply to %s' , 'twentyten' ) ); ?> <small><?php cancel_comment_reply_link( __('Cancel reply', 'twentyten') ); ?></small></h3>
2010-02-07 11:16:26 -05:00
< ? php if ( get_option ( 'comment_registration' ) && ! is_user_logged_in () ) : ?>
2010-02-08 12:59:08 -05:00
< p >< ? php printf ( __ ( 'You must be <a href="%s">logged in</a> to post a comment.' , 'twentyten' ), wp_login_url ( get_permalink () ) ); ?> </p>
< ? php else : // here's the big comment form ?>
< form action = " <?php echo site_url('wp-comments-post.php'); ?> " method = " post " id = " commentform " >
2010-02-07 11:16:26 -05:00
< ? php if ( $user_ID ) : ?>
< p id = " login " >< ? php printf ( __ ( '<span class="loggedin">Logged in as <a href="%1$s" title="Logged in as %2$s">%2$s</a>.</span> <span class="logout"><a href="%3$s" title="Log out of this account">Log out?</a></span>' , 'twentyten' ),
2010-02-08 12:59:08 -05:00
admin_url ( 'profile.php' ),
2010-02-07 11:16:26 -05:00
wp_specialchars ( $user_identity , true ),
wp_logout_url ( get_permalink ()) ) ?> </p>
2010-02-08 12:59:08 -05:00
2010-02-07 11:16:26 -05:00
< ? php else : ?>
2010-02-08 12:59:08 -05:00
2010-02-07 11:16:26 -05:00
< p id = " comment-notes " >< ? php _e ( 'Your email is <em>never</em> published nor shared.' , 'twentyten' ) ?> <?php if ($req) _e('Required fields are marked <span class="required">*</span>', 'twentyten') ?></p>
2010-02-08 12:59:08 -05:00
2010-02-07 11:16:26 -05:00
< div id = " form-section-author " class = " form-section " >
< div class = " form-label " >< label for = " author " >< ? php _e ( 'Name' , 'twentyten' ) ?> </label> <?php if ($req) _e('<span class="required">*</span>', 'twentyten') ?></div>
2010-02-08 15:28:13 -05:00
< div class = " form-input " >< input id = " author " name = " author " type = " text " value = " <?php echo esc_attr( $comment_author ) ?> " size = " 30 " tabindex = " 3 " /></ div >
2010-02-07 11:16:26 -05:00
</ div ><!-- #form-section-author .form-section -->
2010-02-08 12:59:08 -05:00
2010-02-07 11:16:26 -05:00
< div id = " form-section-email " class = " form-section " >
< div class = " form-label " >< label for = " email " >< ? php _e ( 'Email' , 'twentyten' ) ?> </label> <?php if ($req) _e('<span class="required">*</span>', 'twentyten') ?></div>
2010-02-08 15:28:13 -05:00
< div class = " form-input " >< input id = " email " name = " email " type = " text " value = " <?php echo esc_attr( $comment_author_email ) ?> " size = " 30 " tabindex = " 4 " /></ div >
2010-02-07 11:16:26 -05:00
</ div ><!-- #form-section-email .form-section -->
2010-02-08 12:59:08 -05:00
2010-02-07 11:16:26 -05:00
< div id = " form-section-url " class = " form-section " >
< div class = " form-label " >< label for = " url " >< ? php _e ( 'Website' , 'twentyten' ) ?> </label></div>
2010-02-08 15:28:13 -05:00
< div class = " form-input " >< input id = " url " name = " url " type = " text " value = " <?php echo esc_attr( $comment_author_url ) ?> " size = " 30 " tabindex = " 5 " /></ div >
2010-02-07 11:16:26 -05:00
</ div ><!-- #form-section-url .form-section -->
2010-02-08 12:59:08 -05:00
2010-02-07 11:16:26 -05:00
< ? php endif ; // if ( $user_ID ) ?>
2010-02-08 12:59:08 -05:00
2010-02-07 11:16:26 -05:00
< div id = " form-section-comment " class = " form-section " >
< div class = " form-label " >< label for = " comment " >< ? php _e ( 'Comment' , 'twentyten' ) ?> </label></div>
< div class = " form-textarea " >< textarea id = " comment " name = " comment " cols = " 45 " rows = " 8 " tabindex = " 6 " ></ textarea ></ div >
</ div ><!-- #form-section-comment .form-section -->
2010-02-08 12:59:08 -05:00
2010-02-07 11:16:26 -05:00
< div id = " form-allowed-tags " class = " form-section " >
< p >< span >< ? php _e ( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:' , 'twentyten' ) ?> </span> <code><?php echo allowed_tags(); ?></code></p>
</ div >
2010-02-08 12:59:08 -05:00
2010-02-07 11:16:26 -05:00
< ? php do_action ( 'comment_form' , $post -> ID ); ?>
2010-02-08 12:59:08 -05:00
2010-02-08 15:28:13 -05:00
< div class = " form-submit " >< input id = " submit " name = " submit " type = " submit " value = " <?php esc_attr_e('Post Comment', 'twentyten') ?> " tabindex = " 7 " />< input type = " hidden " name = " comment_post_ID " value = " <?php echo esc_attr( $id ); ?> " /></ div >
2010-02-07 11:16:26 -05:00
2010-02-08 12:59:08 -05:00
< ? php comment_id_fields (); ?>
2010-02-07 11:16:26 -05:00
</ form >
2010-02-08 12:59:08 -05:00
2010-02-07 11:16:26 -05:00
< ? php endif ; // If registration required and not logged in ?>
</ div > <!-- #respond -->
< ? php endif ; // if you delete this the sky will fall on your head ?>
</ div ><!-- #comments -->