Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created December 29, 2014 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kaiderella/aab96f48e6ef8d733aa7 to your computer and use it in GitHub Desktop.
Save Kaiderella/aab96f48e6ef8d733aa7 to your computer and use it in GitHub Desktop.
Thêm nội quy vào khung bình luận trong Genesis
//* Thêm nội quy vào khung bình luận trong Genesis
add_action( 'genesis_after_comments', 'sp_comment_policy' );
function sp_comment_policy() {
if ( is_single() && !is_user_logged_in() && comments_open() ) {
?>
<div class="comment-policy-box">
<p class="comment-policy"><small><strong>Nội quy bình luận:</strong>Viết nội quy bình luận của bạn vào đây.</small></p>
</div>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment