Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 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. <div class="alert alert-help">
  9. <p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.', 'bonestheme' ); ?></p>
  10. </div>
  11. <?php
  12. return;
  13. }
  14. ?>
  15.  
  16. <!-- You can start editing here. -->
  17.  
  18. <?php if ( comments_open() ) : ?>
  19.  
  20. <section id="respond" class="respond-form">
  21.  
  22. <h3 id="comment-form-title"><?php comment_form_title( __( 'Leave a Reply', 'bonestheme' )); ?></h3>
  23.  
  24. <div id="cancel-comment-reply">
  25. <p class="small"><?php cancel_comment_reply_link(); ?></p>
  26. </div>
  27.  
  28. <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
  29. <div class="alert alert-help">
  30. <p><?php printf( __( 'You must be %1$slogged in%2$s to post a comment.', 'bonestheme' ), '<a href="<?php echo wp_login_url( get_permalink() ); ?>">', '</a>' ); ?></p>
  31. </div>
  32. <?php else : ?>
  33.  
  34. <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
  35.  
  36. <p>Your email address will not be published. Required fields are marked*</p>
  37.  
  38. <textarea name="comment" id="comment" placeholder="<?php _e( 'Message*', 'bonestheme' ); ?>" tabindex="1"></textarea>
  39.  
  40. <input type="text" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" placeholder="<?php _e( 'Your Name*', 'bonestheme' ); ?>" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
  41.  
  42. <div class="row">
  43. <div class="col-md-6">
  44. <input type="email" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" placeholder="<?php _e( 'Your E-Mail*', 'bonestheme' ); ?>" tabindex="3" <?php if ($req) echo "aria-required='true'"; ?> />
  45. </div>
  46. <div class="col-md-6">
  47. <input type="url" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" placeholder="<?php _e( 'Your Website', 'bonestheme' ); ?>" tabindex="4" />
  48. </div>
  49. </div>
  50.  
  51. <p>
  52. <input name="submit" type="submit" id="submit" class="button" tabindex="5" value="Post my Comment" />
  53. <?php comment_id_fields(); ?>
  54. </p>
  55.  
  56. <?php do_action( 'comment_form', $post->ID ); ?>
  57.  
  58. </form>
  59.  
  60. <?php endif; // If registration required and not logged in ?>
  61. </section>
  62.  
  63. <?php endif; // if you delete this the sky will fall on your head ?>
  64.  
  65. <?php if ( have_comments() ) : ?>
  66.  
  67. <section id="comments">
  68.  
  69. <h3>Comments</h3>
  70. <ol class="commentlist">
  71. <?php wp_list_comments( 'type=comment' ); ?>
  72. </ol>
  73.  
  74. </section>
  75.  
  76. <?php else : // this is displayed if there are no comments so far ?>
  77.  
  78. <?php if ( comments_open() ) : ?>
  79. <!-- If comments are open, but there are no comments. -->
  80.  
  81. <?php else : // comments are closed ?>
  82.  
  83. <!-- If comments are closed. -->
  84. <!--p class="nocomments"><?php _e( 'Comments are closed.', 'bonestheme' ); ?></p-->
  85.  
  86. <?php endif; ?>
  87.  
  88. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement