|  | 
|  | 1 | +<?php | 
|  | 2 | +/** | 
|  | 3 | + * @package WordPress | 
|  | 4 | + * @subpackage HTML5_Boilerplate | 
|  | 5 | + */ | 
|  | 6 | + | 
|  | 7 | +// Do not delete these lines | 
|  | 8 | + if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) | 
|  | 9 | + die ('Please do not load this page directly. Thanks!'); | 
|  | 10 | + | 
|  | 11 | + if ( post_password_required() ) { ?> | 
|  | 12 | + <p class="nocomments">This post is password protected. Enter the password to view comments.</p> | 
|  | 13 | + <?php | 
|  | 14 | + return; | 
|  | 15 | + } | 
|  | 16 | +?> | 
|  | 17 | + | 
|  | 18 | +<!-- You can start editing here. --> | 
|  | 19 | + | 
|  | 20 | +<?php if ( have_comments() ) : ?> | 
|  | 21 | + <h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> to “<?php the_title(); ?>”</h3> | 
|  | 22 | + | 
|  | 23 | + <nav> | 
|  | 24 | + <div><?php previous_comments_link() ?></div> | 
|  | 25 | + <div><?php next_comments_link() ?></div> | 
|  | 26 | + </nav> | 
|  | 27 | + | 
|  | 28 | + <ol class="commentlist"> | 
|  | 29 | + <?php wp_list_comments('type=comment&callback=mytheme_comment'); ?> | 
|  | 30 | + </ol> | 
|  | 31 | + | 
|  | 32 | + <nav> | 
|  | 33 | + <div><?php previous_comments_link() ?></div> | 
|  | 34 | + <div><?php next_comments_link() ?></div> | 
|  | 35 | + </nav> | 
|  | 36 | + <?php else : // this is displayed if there are no comments so far ?> | 
|  | 37 | + | 
|  | 38 | + <?php if ( comments_open() ) : ?> | 
|  | 39 | + <!-- If comments are open, but there are no comments. --> | 
|  | 40 | + | 
|  | 41 | + <?php else : // comments are closed ?> | 
|  | 42 | + <!-- If comments are closed. --> | 
|  | 43 | + <p class="nocomments">Comments are closed.</p> | 
|  | 44 | + | 
|  | 45 | + <?php endif; ?> | 
|  | 46 | +<?php endif; ?> | 
|  | 47 | + | 
|  | 48 | + | 
|  | 49 | +<?php if ( comments_open() ) : ?> | 
|  | 50 | + | 
|  | 51 | +<section id="respond"> | 
|  | 52 | + | 
|  | 53 | + <h3><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h3> | 
|  | 54 | + | 
|  | 55 | + <div class="cancel-comment-reply"> | 
|  | 56 | + <small><?php cancel_comment_reply_link(); ?></small> | 
|  | 57 | + </div> | 
|  | 58 | + | 
|  | 59 | + <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?> | 
|  | 60 | + <p>You must be <a href="<?php echo wp_login_url( get_permalink() ); ?>">logged in</a> to post a comment.</p> | 
|  | 61 | + <?php else : ?> | 
|  | 62 | + | 
|  | 63 | + <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> | 
|  | 64 | + | 
|  | 65 | + <?php if ( is_user_logged_in() ) : ?> | 
|  | 66 | + | 
|  | 67 | + <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out »</a></p> | 
|  | 68 | + | 
|  | 69 | + <?php else : ?> | 
|  | 70 | + | 
|  | 71 | + <p> | 
|  | 72 | + <label for="author">Name <?php if ($req) echo "(required)"; ?></label> | 
|  | 73 | + <input type="text" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /> | 
|  | 74 | + </p> | 
|  | 75 | + | 
|  | 76 | + <p> | 
|  | 77 | + <label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label> | 
|  | 78 | + <input type="email" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> /> | 
|  | 79 | + </p> | 
|  | 80 | + | 
|  | 81 | + <p> | 
|  | 82 | + <label for="url">Website</label> | 
|  | 83 | + <input type="url" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="22" tabindex="3" /> | 
|  | 84 | + </p> | 
|  | 85 | + | 
|  | 86 | + <?php endif; ?> | 
|  | 87 | + | 
|  | 88 | + <p id="allowed_tags"><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></p> | 
|  | 89 | + | 
|  | 90 | + <p><textarea name="comment" id="comment" cols="58" rows="10" tabindex="4"></textarea></p> | 
|  | 91 | + | 
|  | 92 | + <p> | 
|  | 93 | + <input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /> | 
|  | 94 | + <?php comment_id_fields(); ?> | 
|  | 95 | + </p> | 
|  | 96 | + <?php do_action('comment_form', $post->ID); ?> | 
|  | 97 | + | 
|  | 98 | + </form> | 
|  | 99 | + | 
|  | 100 | + <?php endif; // If registration required and not logged in ?> | 
|  | 101 | +</section> | 
|  | 102 | + | 
|  | 103 | +<?php endif; // if you delete this the sky will fall on your head ?> | 
0 commit comments