Change comments form title on a page by page basis

Add the code to your comment template file or your functions.php with a page conditional. The comments file depends on your theme, by default it is comments.php , but it could be named anything, you need to look at your theme’s code.

For example if it’s the contact page,

  if (is_page('Contact'))
    // do something

Leave a Comment