Forums

Adding a hyperlink (to a rules page) below the comment box (4 posts)

  1. ajita
    Member
    Posted 3 years ago #

    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!

  2. esmi
    Theme Diva & Forum Moderator
    Posted 3 years ago #

    Look for <?php comments_template(); ?> in your theme's templates files (possibly single.php) and add your link after that line.

  3. Justin Tadlock
    Member
    Posted 3 years ago #

    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.';
    }
  4. Justin Tadlock
    Member
    Posted 3 years ago #

    Or, use the Comment License plugin:
    http://wordpress.org/extend/plugins/comment-license

Topic Closed

This topic has been closed to new replies.

About this Topic