Advertisement
Darvil

Original

Jan 13th, 2012
2,269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.74 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. <div class="box">
  17.   <div id="commentspost"><a name="commentspost"></a>
  18.     <h2 class="title"><?php comment_type_count();?> <?php _e('Comments', 'wpzoom'); ?></h2>
  19.     <ol class="normalComments"><?php wp_list_comments('type=all&avatar_size=40');?></ol>
  20.     </div><!-- end #commentspost -->
  21.  
  22. <?php if ('closed' == $post->comment_status) : ?>
  23. </div>
  24. <?php endif; ?>
  25.    
  26.  <?php }
  27.  else { // this is displayed if there are no comments so far ?>
  28.  
  29.     <?php if ('open' == $post->comment_status) { ?>
  30.         <!-- If comments are open, but there are no comments. -->
  31. <div class="box">
  32. <div id="commentspost">
  33.     <h2 class="title">0 <?php _e('Comments', 'wpzoom'); ?></h2>
  34.   <p><?php _e('You can be the first one to leave a comment', 'wpzoom'); ?>.</p>
  35. </div>
  36.      <?php } else { // comments are closed ?>
  37.         <!-- If comments are closed. -->
  38.     <?php } ?>
  39. <?php } ?>
  40.  
  41. <?php if ('open' == $post->comment_status) : ?>
  42.  
  43.  
  44. <div id="respond">
  45.  
  46. <h2 class="title"><?php comment_form_title( __('Leave a Comment', 'wpzoom'), __('Leave a Reply to %s', 'wpzoom') ); ?></h2>
  47. <div class="cleaner">&nbsp;</div>
  48. <div class="cancel-comment-reply"><p><?php cancel_comment_reply_link(); ?></p></div>
  49.  
  50. <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
  51. <p><?php _e('You must be', 'wpzoom'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>"><?php _e('logged in', 'wpzoom'); ?></a> <?php _e('to post a comment.', 'wpzoom'); ?></p>
  52. <?php else : ?>
  53.  
  54. <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
  55.  
  56. <?php if ( $user_ID ) : ?>
  57.  
  58. <p><?php _e('Logged in as', 'wpzoom'); ?> <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"><?php _e('Log out', 'wpzoom'); ?> &raquo;</a></p>
  59.  
  60. <?php else : ?>
  61. <div id="formLabels">
  62. <label for="author"><?php _e('Name', 'wpzoom'); ?> <?php if ($req) _e('required', 'wpzoom'); ?>:</label>
  63. <input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /><br />
  64.  
  65. <label for="email"><?php _e('E-Mail', 'wpzoom'); ?> <?php if ($req) _e('required', 'wpzoom'); ?>:</label>
  66. <input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> /><br />
  67.  
  68. <label for="url"><?php _e('Website', 'wpzoom'); ?>:</label>
  69. <input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /><br />
  70. </div>
  71. <?php endif; ?>
  72. <div id="formContent">
  73. <label for="comment"><?php _e('Comment', 'wpzoom'); ?>:</label>
  74. <textarea name="comment" id="comment" tabindex="4" cols="140" rows="8"></textarea><br />
  75. <input name="submit" type="submit" id="submit" value="<?php _e('Add Comment', 'wpzoom'); ?>" />
  76. <!--<p><strong>XHTML:</strong> You can use these tags: <br /><code><?php echo allowed_tags(); ?></code></p>-->
  77. </div>
  78. <div class="cleaner">&nbsp;</div>
  79. <?php comment_id_fields(); ?>
  80. <?php do_action('comment_form', $post->ID); ?>
  81. </form>
  82. <?php endif; // If registration required and not logged in ?>
  83. </div>
  84. </div>
  85. <?php endif; // if you delete this the sky will fall on your head ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement