Advertisement
Guest User

comments.php

a guest
Dec 11th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 KB | None | 0 0
  1. <?php
  2.  
  3. // Do not delete these lines
  4. if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
  5. die ('Please do not load this page directly. Thanks!');
  6.  
  7. if ( post_password_required() ) { ?>
  8. <p class="nocomments">This post is password protected. Enter the password to view comments.</p>
  9. <?php
  10. return;
  11. }
  12. ?>
  13. <!-- You can start editing here. -->
  14. <div id="comments">
  15. <?php if ( have_comments() ) : ?>
  16. <div class="total-comments"><?php comments_number('No Responses', 'Comments <span class="cnumber">(1)</span>', 'Comments <span class="cnumber">(%)</span>' );?></div>
  17.  
  18. <ol class="commentlist">
  19. <div class="navigation">
  20. <div class="alignleft"><?php previous_comments_link() ?></div>
  21. <div class="alignright"><?php next_comments_link() ?></div>
  22. </div>
  23.  
  24. <?php wp_list_comments('type=comment&callback=mytheme_comment'); ?>
  25.  
  26. <div class="navigation">
  27. <div class="alignleft"><?php previous_comments_link() ?></div>
  28. <div class="alignright"><?php next_comments_link() ?></div>
  29. </div>
  30. </ol>
  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"></p>
  39.  
  40. <?php endif; ?>
  41. <?php endif; ?>
  42.  
  43. <?php if ('open' == $post->comment_status) : ?>
  44.  
  45. <div id="respond" class="box m-t-6">
  46.  
  47. <h3><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h3>
  48.  
  49. <div class="cancel-comment-reply">
  50. <small><?php cancel_comment_reply_link(); ?></small>
  51. </div>
  52.  
  53. <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
  54. <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>
  55. <?php else : ?>
  56.  
  57. <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
  58.  
  59. <?php if ( $user_ID ) : ?>
  60.  
  61. <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>
  62.  
  63. <?php else : ?>
  64.  
  65. <label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label>
  66. <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="28" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /></p>
  67.  
  68. <label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label>
  69. <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="28" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> /></p>
  70.  
  71. <label for="url"><small>Website</small></label>
  72. <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="28" tabindex="3" /></p>
  73.  
  74. <?php endif; ?>
  75.  
  76. <!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
  77.  
  78. <p><textarea name="comment" id="comment" cols="100%" rows="8" tabindex="4"></textarea></p>
  79.  
  80. <p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" class="medium skin button"/>
  81. <?php comment_id_fields(); ?>
  82. </p>
  83. <?php do_action('comment_form', $post->ID); ?>
  84.  
  85. </form>
  86.  
  87. <?php endif; // If registration required and not logged in ?>
  88. </div>
  89. <?php endif; // if you delete this the sky will fall on your head ?>
  90. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement