Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. //* Add a comment policy box in comments
  2. add_action( 'genesis_after_comments', 'topleague_comment_policy' );
  3. function topleague_comment_policy() {
  4. if ( is_single() && !is_user_logged_in() && comments_open() ) {
  5. ?>
  6. <div class="comment-policy-box">
  7. <p class="comment-policy"><small><strong>Comment Policy:</strong>Zero tolerance for spammy comments.</small></p>
  8. </div>
  9. <?php
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement