July 15, 2020
Handy snippet for updating the default title text on a Comment Form.
Add to functions.php
//change text to leave a reply on comment form
function isa_comment_reform ($arg) {
$arg['title_reply'] = __('Leave a Comment:'); // where the magic happens
return $arg;
}
add_filter('comment_form_defaults','isa_comment_reform');