Skip to content

Instantly share code, notes, and snippets.

@chriscoyier
Created July 23, 2013 15:52
Show Gist options
  • Save chriscoyier/6063521 to your computer and use it in GitHub Desktop.
Save chriscoyier/6063521 to your computer and use it in GitHub Desktop.
// Spam comments with super long URLs
function rkv_url_spamcheck( $approved , $commentdata ) {
return ( strlen( $commentdata['comment_author_url'] ) > 50 ) ? 'spam' : $approved;
}
add_filter( 'pre_comment_approved', 'rkv_url_spamcheck', 99, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment