How can I remove the title “leave a reply” in the comment box in twentyeleven?

I would like to remove “leave a reply” in the comment form in twenty eleven. How can I do this? Thanks in advance.

Related posts

Leave a Reply

2 comments

  1. 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).

    <?php
    add_filter( 'comment_form_defaults', 'wpse33039_form_defaults' );
    function wpse33039_form_defaults( $defaults )
    {
        $defaults['title_reply'] = '';
        return $defaults;
    }