I would like to remove “leave a reply” in the comment form in twenty eleven. How can I do this? Thanks in advance.
Leave a Reply
You must be logged in to post a comment.
I would like to remove “leave a reply” in the comment form in twenty eleven. How can I do this? Thanks in advance.
You must be logged in to post a comment.
You can filter the default
comment_form
arguments (which is what’s causing the “leave a reply”).Just drop this in
functions.php
or in a plugin file. It would probably be better to put it in a plugin and keep your twenty eleven theme unedited (read: easily updated).edit comments.php,
and find:
comment_form()
;edit to:
comment_form(array('title_reply'=>''))