Instant download after payment Secure checkout Contact support

WordPress How to Tutorials

Change Comment Form Title "Leave a comment" to Custom

23 July 2026

Here is simple WordPress PHP filter to change comment form title  "Leave a comment" to your own custom text, filter comment_form_defaults help you to change it using your theme function.php file easily but make sure. comment form name Also try our theme for better customization and support . WordPress Theme Copy below code and paste into theme function.php
add_filter('comment_form_defaults', 'set_my_comment_title', 20);
function set_my_comment_title( $defaults ){
 $defaults['title_reply'] = __('MY CUSTOM NAME', 'customizr-child');
 return $defaults;
}
MYTHEME > Function.php (usually found with this name and path) Before editing code make sure take backup of file. If you have any question please post comment below.

13 comments

  • Kapil Garg 9 December 2017
    Nice post. thanks for sharing wit us.
  • maxi 1 March 2018
    Nice work
  • Matt Johnson 24 July 2018
    Nice job. thanks for sharing with us.
  • foster 31 August 2018
    nice post,thank you
  • Website development Agency 5 January 2019
    Love to using wordpress PHP Filter thanks for updating us keep sharing
  • clavit 14 July 2019
    Thanks for sharing this information. It's always helpful to read the content on your blog.
  • Aditya 27 July 2019
    I was looking for a way to change the form title for a plugin that i am writing and found this snippet. Solved my problem. Thanks
  • Boundbuzz 28 August 2019
    I am a beginner and facing many problems in optimizing my site. Your this post will help me in optimizing my WordPress site without any type of problem.
  • Sandy 30 August 2019
    Please send your website URL from contact us page.
  • Steven Gordon 16 October 2019
    this is help me so much in my learning Thank you for sharing
  • aa 11 March 2020
    Nice
  • Christopher Emmanuel 21 September 2020
    Thank you
  • Jide 18 January 2021
    Thanks, it works