Advertisement
Guest User

Untitled

a guest
Nov 25th, 2011
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Greyzed
  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 class="nocomments">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.  
  20. <?php if ( have_comments() ) : ?>
  21. <div id="comments"></div>
  22.  
  23. <ol class="commentlist">
  24. <?php wp_list_comments('avatar_size=40'); ?>
  25. </ol>
  26.  
  27. <div class="navigation">
  28. <div class="alignleft"><?php previous_comments_link() ?></div>
  29. <div class="alignright"><?php next_comments_link() ?></div>
  30. </div>
  31. <?php else : // this is displayed if there are no comments so far ?>
  32.  
  33. <?php if ( comments_open() ) : ?>
  34. <!-- If comments are open, but there are no comments. -->
  35. <div id="nocomments"></div>
  36.  
  37. <?php else : // comments are closed ?>
  38. <!-- If comments are closed. -->
  39. <p class="nocomments"></p>
  40.  
  41. <?php endif; ?>
  42. <?php endif; ?>
  43.  
  44.  
  45. <?php if ( comments_open() ) : ?>
  46.  
  47.  
  48. <div id="respondcon">
  49. <div id="respond">
  50.  
  51. <div class="cancel-comment-reply">
  52. <small><?php cancel_comment_reply_link(); ?></small>
  53. </div>
  54.  
  55. <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
  56. <p>You must be <a href="<?php echo wp_login_url( get_permalink() ); ?>">logged in</a> to post a comment.</p>
  57. <?php else : ?>
  58.  
  59. <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
  60.  
  61. <?php if ( is_user_logged_in() ) : ?>
  62.  
  63. Влезли сте като <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="Излезте от този акаунт">Излезте &raquo;</a>
  64.  
  65. <?php else : ?>
  66.  
  67. <p><input type="text" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
  68. <label for="author"><commentlabel>Име <?php if ($req) echo "(изисква се)"; ?></commentlabel></label></p>
  69.  
  70. <p><input type="text" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
  71. <label for="email"><commentlabel>Поща <?php if ($req) echo "(изисква се, но не е видимо)"; ?></commentlabel></label></p>
  72.  
  73. <p><input type="text" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="22" tabindex="3" />
  74. <label for="url"><commentlabel>Сайт</small></commentlabel></p>
  75.  
  76. <?php endif; ?>
  77.  
  78. <!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
  79.  
  80. <textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea>
  81.  
  82. <p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
  83. <?php comment_id_fields(); ?>
  84. </p>
  85. <?php do_action('comment_form', $post->ID); ?>
  86.  
  87. </form>
  88.  
  89. <?php endif; // If registration required and not logged in ?>
  90. </div>
  91. </div>
  92.  
  93. <?php endif; // if you delete this the sky will fall on your head ?>
  94.  
  95.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement