One can easily say you are using genesis theme by looking at the comments line text speak your mind. It is the common text in almost all genesis framework and in all genesis child themes. Though the word Speak your mind sounds good but you are giving a clear idea to end-user that you are using genesis theme. This following tutorial will help you to change the default text speak your mind in genesis. Let us have a look how to change this.
Change genesis change speak your mind text
Before stepping further you must create a child theme, if you don’t know how to create a child theme for genesis use this tutorial to create a child theme for genesis theme from scratch and copied the below part of the code in the functions.php child theme
/**
* Modify speak your mind text in comments
*/
add_filter('genesis_comment_form_args', 'custom_comment_form_args');
function custom_comment_form_args($args) {
$args['title_reply'] = 'Leave a Comment';
return $args;
}
The above code will change the above comment text to ‘Leave a Comment’. If you want to have your own you can change accordingly in the above code.