Advertisement
Guest User

comment.php

a guest
Nov 2nd, 2011
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 KB | None | 0 0
  1. <?php // Do not delete these lines
  2. if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
  3. die ('Please do not load this page directly. Thanks!');
  4.  
  5. if (!empty($post->post_password)) { // if there's a password
  6. if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { // and it doesn't match the cookie
  7. ?>
  8.  
  9. <p class="nocomments">This post is password protected. Enter the password to view comments.</p>
  10.  
  11. <?php
  12. return;
  13. }
  14. }
  15.  
  16. /* This variable is for alternating comment background */
  17. $oddcomment = 'class="alt" ';
  18. ?>
  19.  
  20. <!-- You can start editing here. -->
  21.  
  22. <?php if ($comments) : ?>
  23.  
  24.  
  25. <h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> to &#8220;<?php the_title(); ?>&#8221;</h3>
  26. <div class="comments">
  27. <ol class="comments_list">
  28. <?php foreach ($comments as $comment) : ?>
  29.  
  30. <li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
  31. <cite><?php comment_author_link() ?></cite> Says:
  32. <?php if ($comment->comment_approved == '0') : ?>
  33. <em>Your comment is awaiting moderation.</em>
  34. <?php endif; ?>
  35. <br />
  36. <small class="commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('F jS, Y') ?> at <?php comment_time() ?></a> <?php edit_comment_link('edit','&nbsp;&nbsp;',''); ?></small>
  37. <?php comment_text() ?>
  38. </li>
  39. <?php
  40. /* Changes every other comment to a different class */
  41. $oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : '';
  42. ?>
  43. <?php endforeach; /* end for each comment */ ?>
  44. </ol>
  45. </div>
  46.  
  47. <?php else : // this is displayed if there are no comments so far ?>
  48.  
  49. <?php if ('open' == $post->comment_status) : ?>
  50. <!-- If comments are open, but there are no comments. -->
  51.  
  52. <?php else : // comments are closed ?>
  53. <!-- If comments are closed. -->
  54. <p class="nocomments">Comments are closed.</p>
  55.  
  56. <?php endif; ?>
  57. <?php endif; ?>
  58.  
  59. <?php if ('open' == $post->comment_status) : ?>
  60.  
  61.  
  62. <h3 id="respond">Leave a Reply</h3>
  63.  
  64. <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
  65. <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>
  66. <?php else : ?>
  67.  
  68. <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
  69.  
  70. <?php if ( $user_ID ) : ?>
  71.  
  72. <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Logout &raquo;</a></p>
  73.  
  74. <?php else : ?>
  75.  
  76. <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
  77. <label for="author"><b>Name</b> <?php if ($req) echo "(required)"; ?></label></p>
  78.  
  79. <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
  80. <label for="email"><b>Mail</b> (will not be published) <?php if ($req) echo "(required)"; ?></label></p>
  81.  
  82. <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
  83. <label for="url"><b>Website</b></label></p>
  84.  
  85. <?php endif; ?>
  86.  
  87.  
  88. <p><textarea name="comment" id="comment" cols="50" rows="10" tabindex="4"></textarea></p>
  89.  
  90. <p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
  91. <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
  92. </p>
  93. <?php do_action('comment_form', $post->ID); ?>
  94.  
  95. </form>
  96.  
  97. <?php endif; // If registration required and not logged in ?>
  98.  
  99. <?php endif; // if you delete this the sky will fall on your head ?>
  100.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement