1. <?php
  2. // Do not delete these lines
  3. if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
  4. die ('Please do not load this page directly. Thanks!');
  5. if ( post_password_required() ) { ?>
  6. <p class="nocomments">This post is password protected. Enter the password to view comments.</p>
  7. <?php
  8. return;
  9. }
  10. ?>
  11. <!-- You can start editing here. -->
  12. <div class="comments" id="comment">
  13. <?php if ( have_comments() ) : ?>
  14. <div id="comnums"> <h3> <?php comments_number('No Responses', 'One Response', '% Responses' );?> </h3> </div>
  15. <ol class="commentlist">
  16. <?php wp_list_comments('avatar_size=60&type=comment'); ?>
  17. </ol>
  18. <ol class="pinglist">
  19. <?php wp_list_comments('type=pings'); ?>
  20. </ol>
  21. <div class="navigation">
  22. <div class="alignleft"><?php previous_comments_link() ?></div>
  23. <div class="alignright"><?php next_comments_link() ?></div>
  24. </div>
  25. <?php else : // this is displayed if there are no comments so far ?>
  26. <?php if ('open' == $post->comment_status) : ?>
  27. <!-- If comments are open, but there are no comments. -->
  28. <?php else : // comments are closed ?>
  29. <!-- If comments are closed. -->
  30. <p class="nocomments">Comments are closed.</p>
  31. <?php endif; ?>
  32. <?php endif; ?>
  33. <?php the_date(); ?>
  34. <?php if ('open' == $post->comment_status) : ?>
  35. <div class="clear"></div>
  36. <div id="respond">
  37. <h3><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h3>
  38. <div class="cancel-comment-reply">
  39. <small><?php cancel_comment_reply_link(); ?></small>
  40. </div>
  41. <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
  42. <p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logged in</a> to post a comment.</p>
  43. <?php else : ?>
  44. <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
  45. <?php if ( $user_ID ) : ?>
  46. <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 &raquo;</a></p>
  47. <?php else : ?>
  48. <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
  49. <label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label></p>
  50. <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
  51. <label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p>
  52. <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
  53. <label for="url"><small>Website</small></label></p>
  54. <?php endif; ?>
  55. <!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
  56. <p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
  57. <p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
  58. <?php comment_id_fields(); ?>
  59. </p>
  60. <?php do_action('comment_form', $post->ID); ?>
  61. </form>
  62. <?php endif; // If registration required and not logged in ?>
  63. </div>
  64. <?php endif; // if you delete this the sky will fall on your head ?>
  65. </div>