Limit Comment Length

This snippet limits the maximum length of comments to prevent excessively long comments.

PHP

function limit_comment_length($commentdata) {
    $max_length = 500; // Maximum comment length in characters
    if (strlen($commentdata['comment_content']) > $max_length) {
        wp_die('Comments are limited to ' . $max_length . ' characters.');
    }
    return $commentdata;
}
add_filter('preprocess_comment', 'limit_comment_length');

Snippet Feedback

Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY

1 Views

Tags

Language

Did it work?

Save Snippet

Embed Snippet

To embed this snippet on your site, copy this html code and paste into your webpage. Learn more
By embedding snippets on your site, you are agreeing to our terms and conditions.

Embed Snippet

To embed this snippet on your site, copy this html code and paste into your webpage. Learn more
By embedding snippets on your site, you are agreeing to our terms and conditions.

Embed Snippet

To embed this snippet on your site, copy this html code and paste into your webpage. Learn more
By embedding snippets on your site, you are agreeing to our terms and conditions.