Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Last active June 3, 2022 02:15
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 Kaiderella/31a402372f13bccb730e to your computer and use it in GitHub Desktop.
Save Kaiderella/31a402372f13bccb730e to your computer and use it in GitHub Desktop.
Loại bỏ các thẻ HTML được cho phép bên trên khung bình luận trong Genesis
//* Loại bỏ các thẻ HTML được cho phép bên trên khung bình luận trong Genesis
add_filter( 'comment_form_defaults', 'sp_remove_comment_form_allowed_tags' );
function sp_remove_comment_form_allowed_tags( $defaults ) {
$defaults['comment_notes_after'] = '';
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment