Advertisement
mbcreation

WordPress antispam. Disable html in comments

Feb 5th, 2015
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. // Quick solution that should do the job for dummy bots.
  2.  
  3. function html_is_bad( $approved , $commentdata )
  4. {
  5.  
  6.   if($commentdata['comment_content']!==strip_tags($commentdata['comment_content']))
  7.     return 'spam';
  8.  
  9.   return $approved;
  10. }
  11.  
  12. add_filter( 'pre_comment_approved' , 'html_is_bad' , '99', 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement