<?php if ( 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']) ) die ( 'Please do not load this page directly. Thanks.' ); ?> <div id="comments"> <?php if ( post_password_required() ) : ?> <div class="nopassword"><?php _e( 'This post is protected. Enter the password to view any comments.', 'sandbox' ) ?></div> </div><!-- .comments --> <?php return; endif; ?> <?php // Number of pings and comments $ping_count = $comment_count = 0; foreach ( $comments as $comment ) get_comment_type() == "comment" ? ++$comment_count : ++$ping_count; ?> <?php if ( $comment_count ) : ?> <?php $sandbox_comment_alt = 0 ?> <div id="comments-list" class="comments"> <h3><?php printf($comment_count > 1 ? __('<span>%d</span> Comments', 'sandbox') : __('<span>One</span> Comment', 'sandbox'), $comment_count) ?></h3> <ol> <?php wp_list_comments( 'type=comment&callback=sandbox_comments' ); ?> </ol> <div class="navigation"> <div class="alignleft"><?php previous_comments_link() ?></div> <div class="alignright"><?php next_comments_link() ?></div> </div> </div><!-- #comments-list .comments --> <?php endif; // REFERENCE: if ( $comment_count ) ?> <?php if ( $ping_count ) : ?> <?php $sandbox_comment_alt = 0 ?> <div id="trackbacks-list" class="comments"> <h3><?php printf($ping_count > 1 ? __('<span>%d</span> Trackbacks', 'sandbox') : __('<span>One</span> Trackback', 'sandbox'), $ping_count) ?></h3> <ol> <?php wp_list_comments( 'type=pings&callback=sandbox_trackbacks' ); ?> </ol> </div><!-- #trackbacks-list .comments --> <?php endif // REFERENCE: if ( $ping_count ) ?> <div class="navigation"> <?php paginate_comments_links(); ?> </div> <?php if ( comments_open() ) : ?> <?php $req = get_option('require_name_email'); // Checks if fields are required. Thanks, Adam. ;-) ?> <div id="respond"> <h3><?php _e( 'Post a Comment', 'sandbox' ) ?></h3> <div class="cancel-comment-reply"> <small><?php cancel_comment_reply_link() ?></small> </div> <?php if ( get_option('comment_registration') && !$user_ID ) : ?> <p id="login-req"><?php printf(__('You must be <a href="%s" title="Log in">logged in</a> to post a comment.', 'sandbox'), get_bloginfo('wpurl') . '/wp-login.php?redirect_to=' . get_permalink() ) ?></p> <?php else : ?> <div class="formcontainer"> <form id="commentform" action="<?php echo site_url( '/wp-comments-post.php' ); ?>" method="post"> <?php comment_id_fields(); ?> <?php if ( isset( $user_ID ) && $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>', 'sandbox' ), get_bloginfo('wpurl') . '/wp-admin/profile.php', esc_html( $user_identity ), esc_url( wp_logout_url( esc_url_raw( ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) ) ); ?></p> <?php else : ?> <p id="comment-notes"><?php if ($req) _e( 'Required fields are marked <span class="required">*</span>', 'sandbox' ) ?></p> <div class="form-label"><label for="author"><?php _e( 'Name', 'sandbox' ) ?></label> <?php if ($req) _e( '<span class="required">*</span>', 'sandbox' ) ?></div> <div class="form-input"><input id="author" name="author" class="text<?php if ($req) echo ' required'; ?>" type="text" value="<?php echo esc_attr( $comment_author ); ?>" size="30" maxlength="50" tabindex="3" /></div> <div class="form-label"><label for="email"><?php _e( 'Email', 'sandbox' ) ?></label> <?php if ($req) _e( '<span class="required">*</span>', 'sandbox' ) ?></div> <div class="form-input"><input id="email" name="email" class="text<?php if ($req) echo ' required'; ?>" type="text" value="<?php echo esc_attr( $comment_author_email ); ?>" size="30" maxlength="50" tabindex="4" /></div> <div class="form-label"><label for="url"><?php _e( 'Website', 'sandbox' ) ?></label></div> <div class="form-input"><input id="url" name="url" class="text" type="text" value="<?php echo esc_url( $comment_author_url ); ?>" size="30" maxlength="50" tabindex="5" /></div> <?php endif // REFERENCE: * if ( $user_ID ) ?> <div class="form-label"><label for="comment"><?php _e( 'Comment', 'sandbox' ) ?></label></div> <div class="form-textarea"><textarea id="comment" name="comment" class="text required" cols="45" rows="8" tabindex="6"></textarea></div> <div class="form-submit"><input id="submit" name="submit" class="button" type="submit" value="<?php esc_attr_e( 'Post Comment', 'sandbox' ); ?>" tabindex="7" /><input type="hidden" name="comment_post_ID" value="<?php echo esc_attr( $id ); ?>" /></div> <div class="form-option"><?php do_action( 'comment_form', $post->ID ) ?></div> </form><!-- #commentform --> </div><!-- .formcontainer --> <?php endif // REFERENCE: if ( get_option('comment_registration') && !$user_ID ) ?> </div><!-- #respond --> <?php endif // REFERENCE: if ( comments_open() ) ?> </div><!-- #comments -->