Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Stop comments over 13k
  4. Description: A security precaution to stop comments over 13k.
  5. Version: 0.0.2
  6. Author: WPEngine
  7. Author URI: wpengine.com
  8. License: GPLv2
  9. */
  10. add_filter('pre_comment_content', 'wpengine_die_on_long_comment', 9999);
  11.  
  12. function wpengine_die_on_long_comment($text) {
  13.   if (strlen($text) > 13000) wp_die('This comment is longer than the maximum allowed size and has been dropped.');
  14.   return $text;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement