Reputation: 830
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.
Is anyone have done this before or any idea to do this.?
Thanks in Advance
Upvotes: 1
Views: 7422
Reputation: 548
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.
Upvotes: 10