Ok i have website, and want to change Leave Reply string near the bottom of the page. It is wordpress template, and i looked all over the page to find where is that string located. I ended up on get_the_title()
function inside wp-incledes
. I watched inside comment box in wp-admin, and there is no string like that.
Here is the link, if you can give me idea.
http://zivibolje.com/pobedite-nesanicu-u-par-koraka/
** * update * **
Your theme uses the function
comment_form()
(reference). You can add arguments to that function, for instance:comment_form(array('title_reply' => 'Leave a reply' ));
Go to your theme editor, select
comments.php
and at the second to last rule replacecomment_form();
with the code above. Replace ‘Leave a reply’ with your own text of course.You should check on your comments.php file on your theme folder. Search for reply-title