Skip to content

Instantly share code, notes, and snippets.

@jb510
Forked from kovshenin/meanwhile.php
Last active August 29, 2015 14:20
Show Gist options
  • Save jb510/0f7c4864bcaf8870283c to your computer and use it in GitHub Desktop.
Save jb510/0f7c4864bcaf8870283c to your computer and use it in GitHub Desktop.
<?php
add_filter( 'pre_comment_content', 'jb_xss_comment_overflow_protection');
function jb_xss_comment_overflow_protection( $content ) {
if ( strlen( $content ) > 64000 ) {
wp_die( 'Invalid comment.' );
}
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment