How to change “Leave a Reply” title in wordpress twentyfifteen theme

I need to change Leave a Reply into Leave an Answer in WordPress twenty fifteen theme.

I tried using comments.php file, but it is not working for me.

Read More

Is anyone have done this before or any idea to do this.?

Thanks in Advance

Related posts

1 comment

  1. WordPress default theme uses comment_form() to display the form. You can pass it an array as a parameter to indicate some options.
    One of these options is title_reply: indicate a string, and you change the title!

    comment_form(array(
    'title_reply' => 'Leave an answer'
    ));

    See the WordPress codex to learn more about this function.

Comments are closed.