Modify the Speak Your Mind Text

Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.

Here is the code needed to modify the Speak Your Mind title text on your site:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Modify the speak your mind title in comments
add_filter( 'comment_form_defaults', 'sp_comment_form_defaults' );
function sp_comment_form_defaults( $defaults ) {
 
	$defaults['title_reply'] = __( 'Leave a Comment' );
	return $defaults;
 
}
What are your feelings