Code-Snippets-Functions/Execute a function on a child site/Astra/change-comment-title-tag.txt

6 lines
270 B
Text

add_filter( 'comment_form_defaults', 'leave_a_comment_title_tag' );
function leave_a_comment_title_tag( $defaults ){
$defaults['title_reply_before'] = '<p id="reply-title" class="comment-reply-title">';
$defaults['title_reply_after'] = '</p>';
return $defaults;
}