yeahhub

Limit WordPress Comments Length

Jun 16th, 2018
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. /**
  2. * Limit Comment Lenghts (Powered by Yeahhub.com)
  3. */
  4. add_filter( 'preprocess_comment', 'wpb_preprocess_comment' );
  5.  
  6. function wpb_preprocess_comment($comment) {
  7.     if ( strlen( $comment['comment_content'] ) > 5000 ) {
  8.         wp_die('Comment is too long. Please keep your comment under 5000 characters.');
  9.     }
  10. if ( strlen( $comment['comment_content'] ) < 60 ) {
  11.         wp_die('Comment is too short. Please use at least 60 characters.');
  12.     }
  13.     return $comment;
  14. }
Add Comment
Please, Sign In to add comment