Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdmrhn/cc562352830b8c8b7afb70867e0178ca to your computer and use it in GitHub Desktop.
Save tdmrhn/cc562352830b8c8b7afb70867e0178ca to your computer and use it in GitHub Desktop.
Change Comment Form Heading Tag
<?php
add_filter( 'comment_form_defaults', function ($defaults) {
// $defaults['title_reply'] = __( 'Add a Comment' );
$defaults['title_reply_before'] = '<h4 id="reply-title" class="comment-reply-title">';
$defaults['title_reply_after'] = '</h4>';
return $defaults;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment