Skip to content

Instantly share code, notes, and snippets.

@hberberoglu
Last active August 29, 2015 14:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hberberoglu/d136b4c152011079ea8d to your computer and use it in GitHub Desktop.
Save hberberoglu/d136b4c152011079ea8d to your computer and use it in GitHub Desktop.
comment limit
add_filter( 'preprocess_comment', 'nyt_preprocess_comment' );
function nyt_preprocess_comment($comment) {
if ( strlen( $comment['comment_content'] ) > 5000 ) {
wp_die('Bu kadar uzun yorum yazılamaz.');
}
return $comment;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment