Skip to main content

Back to test the community features.

Is there a feature that allows us to limit the number of characters in a post?

There are filter hooks for that, for both post and comment:

add_filter('fluent_community/max_post_length', function($max) {
    return 1000;
});

add_filter('fluent_community/max_comment_char_length', function($max) {
    return 1000;
});

This will limit the post/comment to 1000 characters.