Finally getting back into the swing of Tuesday Tutorials YAY!!!
Have you wanted to get rid of those tags & attributes that show up under your comment field that looks like this?
Well it is really easy
Go to your Edit CSS and you can add the following code (Found this code at How To Blog)
.form-allowed-tags{
display:none;
}
or you can also simple copy this code and add to your functions.php file (Found this code at WordPress Support)
/**
* Remove the text - 'You may use theseHTML tags ...'
* from below the comment entry box.
*/
add_filter('comment_form_defaults', 'remove_comment_styling_prompt');
function remove_comment_styling_prompt($defaults) {
$defaults['comment_notes_after'] = '';
return $defaults;
}
Hope you found this tutorial helpful. If you have something you would like to see on a future tutorial please fill out this form, and I will be sure to cover it.
Removing Comments Tags on Tuesday Tutorials! Click To TweetHope you come back next week for the next Tuesday Tutorial.
Leave a Reply