Last active
August 29, 2015 14:20
-
-
Save hberberoglu/d136b4c152011079ea8d to your computer and use it in GitHub Desktop.
comment limit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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