Skip to content

Instantly share code, notes, and snippets.

@saivarunk
Last active February 7, 2016 08:22
Show Gist options
  • Save saivarunk/9043e0198c67f7b99726 to your computer and use it in GitHub Desktop.
Save saivarunk/9043e0198c67f7b99726 to your computer and use it in GitHub Desktop.
//* Add a comment policy box in comments
add_action( 'genesis_after_comments', 'sv_comment_policy' );
function sv_comment_policy() {
if ( is_single() && !is_user_logged_in() && comments_open() ) {
?>
<div class="comment-policy-box">
<p class="comment-policy"><small><strong>Comment Policy:</strong>All the comments and approved upon verification</small></p>
</div>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment