Advertisement
Guest User

Untitled

a guest
Sep 1st, 2011
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 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-child/images/add_your_comment.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/ico_comments.png" alt="Leave a Comment"/>&nbsp;&nbsp;<?php comment_form_title( 'Leave a comment', 'Leave a comment to %s' ); ?></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="Name" onfocus="this.value=''; this.onfocus=null;"size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /> <font color="red">*</font></p>
  60.  
  61. <p><input type="text" name="email" id="email" value="Mail (will not be published)" onfocus="this.value=''; this.onfocus=null;" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> /> <font color="red">*</font></p>
  62.  
  63. <p><input type="text" name="url" id="url" value="Website" onfocus="this.value=''; this.onfocus=null;" size="22" tabindex="3" add_filter('pre_comment_author_url', 'filter_comment_url'); />
  64. </p>
  65.  
  66. <?php endif; ?>
  67.  
  68.  
  69.  
  70.  
  71.  
  72. <!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
  73. <p><label for="comment">Blabber away! I love to read your comments. Feel free to use smilies! ^-^</label>
  74. <?php if(function_exists('s4w_comment_form'))s4w_comment_form();?>
  75. <textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
  76.  
  77. <p><input name="submit" type="submit" id="submit" tabindex="5" value="" />
  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