Created
November 28, 2014 06:46
-
-
Save pasadamedia/642d57a4258835c4a9a6 to your computer and use it in GitHub Desktop.
Remove allowed tags notice on comment form.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Remove allowed tags notice on comment form. | |
* | |
*/ | |
function pasada_remove_comment_form_allowed_tags( $defaults ) { | |
$defaults['comment_notes_after'] = ''; | |
return $defaults; | |
} | |
add_filter( 'comment_form_defaults', 'pasada_remove_comment_form_allowed_tags' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment