• I want to edit this text which is by default shown under the comment form: You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

    I just want to add a note that it’s possible to use blockquotes with specific classes or cites which will look differently from regular blockquotes.

    I’ve searched everywhere, but I can’t find the location in the twentyten theme of this.

Viewing 1 replies (of 1 total)
  • ‘per aspera – reaching for the stars?’ 😉

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

    to change the wording, edit comments.php, and find quite at the end:

    <?php comment_form(); ?>

    change it to something like this:

    <?php comment_form( array('comment_notes_after' => '<p class="form-allowed-tags">' . ' <code>You may use these HTML tags and attributes: '. htmlentities('<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> MORE BLOCKQUOTES HERE MAYBE <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> OR YOUR EXPLANATION MAYBE HERE') . '</code>' . '</p>') ); ?>

    to change the actual allowed tags, you may need a plugin.

Viewing 1 replies (of 1 total)
  • The topic ‘Editing allowed tags displayed for comments’ is closed to new replies.