Remove the Allowed Tags Text

Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.

Here is the code needed to remove the allowed tags text above the comment form:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Remove comment form allowed tags
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;
 
}
What are your feelings