• I have set up the facility to add posts to my website but I want to make a simple text change to the default template – at present it show the words “Leave a Reply” which I want to remove.

Viewing 4 replies - 1 through 4 (of 4 total)
  • On which page?

    Thread Starter nsf123

    (@nsf123)

    the site is http://www.familyfox.co.uk if you look at the link to “messages” you will see in the comments box the words “Leave A Reply” which I want to remove – Thanks

    The comment form appears to be the default WordPress comment form. The command to change the default from “Leave a reply” is the function comment_form_title( ). You have to add it into the php template where you call the comment form. It may be inside a conditional on the index.php or its own template depending on the theme you are using.

    An example of how you change it is:
    <h3> <?php comment_form_title( 'Let Us Know What You think!'); ?> </h3>

    Here is the link to the codex page that explains how to use it in depth.

    Thread Starter nsf123

    (@nsf123)

    thanks for your help

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Where do I find the template for Posts’ is closed to new replies.