• Hi,

    I have a site where comments are appreciated, but I would like to give a small text on commenting guidelines on top of the comment form. Is there an easy way to do this?

    I have Compositio 1 theme.

    Thanks for any advice!

Viewing 1 replies (of 1 total)
  • you theme might have a comments.php; edit this;

    look for comment_form()

    http://codex.wordpress.org/Function_Reference/comment_form

    one possibility:
    for instance, try to use the following:

    <?php comment_form(array('comment_notes_before' => '<p class="comment-notes">' . __( 'Your email address will not be published.' ) . ( $req ? $required_text : '' ) . '<br/>YOUR INTRO TEXT HERE</p>')); ?>

    other possibility:

    add your intro text before the line with ‘comment_form();’

    you could paste the code of comments.php into a http://wordpress.pastebin.com/ and post the link to it here.
    someone might have a look at it and might have some suggestions.

Viewing 1 replies (of 1 total)
  • The topic ‘Comment form introduction text’ is closed to new replies.