Advertisement
Guest User

Untitled

a guest
May 22nd, 2010
423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  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.  
  6. if ( post_password_required() ) { ?>
  7. <p class="nocomments">This post is password protected. Enter the password to view comments.</p>
  8. <?php
  9. return;
  10. }
  11. ?>
  12.  
  13. <!-- You can start editing here. -->
  14.  
  15. <?php if ( have_comments() ) : ?>
  16.  
  17.  
  18. <h3 id="comments">&sect; <?php comments_number('No Responses', 'One Response', '% Responses' );?> to &#8220;<?php the_title(); ?>&#8221;</h3>
  19.  
  20.  
  21. <ul class="commentlist">
  22. <?php wp_list_comments(); ?>
  23. </ul>
  24.  
  25. <div class="navigation">
  26. <div class="alignleft"><?php previous_comments_link() ?></div>
  27. <div class="alignright"><?php next_comments_link() ?></div>
  28. </div>
  29.  
  30.  
  31. <?php else : // this is displayed if there are no comments so far ?>
  32.  
  33. <?php if ('open' == $post->comment_status) : ?>
  34. <!-- If comments are open, but there are no comments. -->
  35.  
  36. <?php else : // comments are closed ?>
  37. <!-- If comments are closed. -->
  38. <p class="nocomments">Comments are closed.</p>
  39.  
  40. <?php endif; ?>
  41. <?php endif; ?>
  42.  
  43.  
  44. <?php if ('open' == $post->comment_status) : ?>
  45.  
  46. <div id="respond">
  47.  
  48. <h3>&sect; <?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h3>
  49.  
  50. <div class="cancel-comment-reply">
  51. <small><?php cancel_comment_reply_link(); ?></small>
  52. </div>
  53.  
  54. <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
  55. <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>
  56. <?php else : ?>
  57.  
  58. <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
  59.  
  60. <?php if ( $user_ID ) : ?>
  61.  
  62. <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>
  63.  
  64. <?php else : ?>
  65.  
  66. <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
  67. <label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label></p>
  68.  
  69. <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'"; ?> />
  70. <label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p>
  71.  
  72. <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
  73. <label for="url"><small>Website</small></label></p>
  74.  
  75. <?php endif; ?>
  76.  
  77. <!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
  78.  
  79. <p><textarea name="comment" id="comment" cols="60%" rows="10" tabindex="4"></textarea></p>
  80.  
  81. <p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
  82. <?php comment_id_fields(); ?>
  83. </p>
  84. <?php do_action('comment_form', $post->ID); ?>
  85.  
  86. </form>
  87.  
  88. <?php endif; // If registration required and not logged in ?>
  89. </div>
  90.  
  91. <?php endif; // if you delete this the sky will fall on your head ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement