function strip_tags_filter($text) {
return strip_tags($text);
}
// run this if you want to strip them before saving
// CAREFUL: may cause data loss
add_filter(‘pre_comment_content’,’strip_tags_filter’);
// run these if you want to strip them before displaying
add_filter(‘comment_excerpt’,’strip_tags_filter’);
add_filter(‘comment_text’,’strip_tags_filter’);
add_filter(‘comment_text_rss’,’strip_tags_filter’);