In the Reference theme, the comment box is titled with "Leave a Reply." I would like to be able to change that to "Post a Comment", for example. How would I do that?
Thanks in advance!
Dave
In the Reference theme, the comment box is titled with "Leave a Reply." I would like to be able to change that to "Post a Comment", for example. How would I do that?
Thanks in advance!
Dave
http://codex.wordpress.org/Function_Reference/comment_form
in comments.php, change this line:
<?php comment_form(); ?>
to:
<?php comment_form(array('title_reply' => 'Post a Comment')); ?>Just what I needed! Thanks a lot!
This topic has been closed to new replies.