Advertisement
Guest User

Untitled

a guest
Sep 4th, 2011
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 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.  
  14. <!-- You can start editing here. -->
  15.  
  16. <?php if ( have_comments() ) : ?>
  17. <h2 class="h2comments"><img src="http://zoomingjapan.com/wp-content/themes/alltuts-child/images/comments_big.png"><?php comments_number('No Comments', '1 Comment', '% Comments' );?> <a href="#respond" class="addComment"><img src="http://zoomingjapan.com/wp-content/themes/alltuts/images/add_your_coment_ver2.png" border=0></a></h2>
  18.  
  19. <ul class="commentlist">
  20. <?php wp_list_comments('callback=mytheme_comment');?>
  21. </ul>
  22. <?php else : // this is displayed if there are no comments so far ?>
  23.  
  24. <?php if ('open' == $post->comment_status) : ?>
  25. <!-- If comments are open, but there are no comments. -->
  26.  
  27. <?php else : // comments are closed ?>
  28. <!-- If comments are closed. -->
  29. <p class="nocomments">Comments are closed.</p>
  30.  
  31. <?php endif; ?>
  32. <?php endif; ?>
  33.  
  34.  
  35. <?php if ('open' == $post->comment_status) : ?>
  36.  
  37. <div id="respond">
  38.  
  39. <h2 id="commentsForm"><img src="<?php bloginfo('template_directory'); ?>/images/commentform_please_comment.png" alt="Leave a Comment"/></h2>
  40.  
  41. <div class="cancel-comment-reply">
  42. <small><?php cancel_comment_reply_link(); ?></small>
  43. </div>
  44.  
  45. <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
  46. <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>
  47. <?php else : ?>
  48.  
  49. <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
  50.  
  51. <?php if ( $user_ID ) : ?>
  52.  
  53. <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>
  54.  
  55. <?php else : ?>
  56.  
  57. <?php if (function_exists('gravbox')) gravbox();?>
  58.  
  59. <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
  60. </p>
  61.  
  62. <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'"; ?> />
  63. </p>
  64.  
  65. <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
  66. </p>
  67. <div class="commentform_required_img"><img src="http://zoomingjapan.com/wp-content/themes/alltuts/images/commentform_input_required.png"></div>
  68. <?php endif; ?>
  69.  
  70.  
  71.  
  72. <!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
  73. <p><?php if(function_exists('s4w_comment_form'))s4w_comment_form();?>
  74. <textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
  75. <div class="commentform_thankyou"><img src="http://zoomingjapan.com/wp-content/themes/alltuts/images/commentform_thankyou.png"></div>
  76. <p><input name="submit" type="submit" id="submit" tabindex="5" value="" />
  77.  
  78. <?php comment_id_fields(); ?>
  79. <?php do_action('comment_form', $post->ID); ?>
  80. </p>
  81. </form>
  82.  
  83. <?php endif; // If registration required and not logged in ?>
  84. </div>
  85.  
  86. <?php endif; // if you delete this the sky will fall on your head ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement