Dejan Stuparic
Dejan Stuparic

Reputation: 595

change the title of comments in my wp template

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/

Upvotes: 4

Views: 2842

Answers (2)

Stephan Muller
Stephan Muller

Reputation: 27640

** * 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 replace comment_form(); with the code above. Replace 'Leave a reply' with your own text of course.

Upvotes: 3

Vlad.P
Vlad.P

Reputation: 1464

You should check on your comments.php file on your theme folder. Search for reply-title

Upvotes: 1

Related Questions