Advertisement
Guest User

herr

a guest
Jul 26th, 2013
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Default_Theme
  5. */
  6.  
  7. // Do not delete these lines
  8. if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
  9. die ('Please do not load this page directly. Thanks!');
  10.  
  11. if ( post_password_required() ) { ?>
  12. <p>This post is password protected. Enter the password to view comments.</p>
  13. <?php
  14. return;
  15. }
  16. ?>
  17.  
  18. <!-- You can start editing here. -->
  19. <div id="comment-container"><?php if ( have_comments() ) : ?>
  20.  
  21. <ol class="commentlist"><?php wp_list_comments(array('style' => 'ol', 'avatar_size' => 50,)); ?></ol>
  22.  
  23. <?php else : // this is displayed if there are no comments so far ?>
  24.  
  25. <?php if ( comments_open() ) : ?>
  26. <!-- If comments are open, but there are no comments. -->
  27.  
  28.  
  29. <?php else : // comments are closed ?>
  30. <!-- If comments are closed. -->
  31. <p>Comments are closed.</p>
  32.  
  33. <?php endif; ?>
  34. <?php endif; ?>
  35.  
  36.  
  37. <?php if ( comments_open() ) : ?>
  38.  
  39. <div id="respond">
  40.  
  41. <?php comment_form_title( 'LEAVE YOUR MARK', 'REPLY' ); ?>
  42.  
  43. <div class="respond">
  44.  
  45. <div class="cancel-reply"><?php cancel_comment_reply_link('CANCEL REPLY'); ?></div>
  46.  
  47. <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
  48. <p>You must be <a href="<?php echo wp_login_url( get_permalink() ); ?>">logged in</a> to post a comment.</p>
  49. <?php else : ?>
  50.  
  51. <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
  52.  
  53. <?php if ( is_user_logged_in() ) : ?>
  54.  
  55. <p><small>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></small></p>
  56.  
  57. <?php else : ?>
  58.  
  59. <p><input type="text" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" size="30" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
  60. <label for="author"><small>Name <?php if ($req) echo "*"; ?></small></label></p>
  61.  
  62. <p><input type="text" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="30" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
  63. <label for="email"><small>E-mail <?php if ($req) echo "*"; ?></small></label></p>
  64.  
  65. <p><input type="text" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="30" tabindex="3" />
  66. <label for="url"><small>Website</small></label></p>
  67.  
  68. <?php endif; ?>
  69.  
  70. <!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
  71.  
  72. <p><textarea name="comment" id="comment" rows="10" tabindex="4"></textarea></p>
  73.  
  74. <p><input name="submit" type="submit" id="submit" tabindex="5" value="MARK IT!" />
  75. <?php comment_id_fields(); ?>
  76. </p>
  77. <?php do_action('comment_form', $post->ID); ?>
  78.  
  79. </form>
  80.  
  81. <?php endif; // If registration required and not logged in ?>
  82. </div>
  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