Im trying to add a link above or below the comments box, leading to a rules/guidelines page. Does anyone know where the code should go and what it should say?
A plugin to do this would be great too.
Thanks!
Im trying to add a link above or below the comments box, leading to a rules/guidelines page. Does anyone know where the code should go and what it should say?
A plugin to do this would be great too.
Thanks!
Look for <?php comments_template(); ?> in your theme's templates files (possibly single.php) and add your link after that line.
Add this to your theme's functions.php file:
add_action( 'comment_form', 'my_comment_rules' );
function my_comment_rules() {
echo 'These are the <a href="http://linktosomerules.com" title="Rules">rules</a> for commenting.';
}Or, use the Comment License plugin:
http://wordpress.org/extend/plugins/comment-license
This topic has been closed to new replies.