comment exiger une longueur minimale de commentaire dans wordpress

Solutions on MaxInterview for comment exiger une longueur minimale de commentaire dans wordpress by the best coders in the world

showing results for - "comment exiger une longueur minimale de commentaire dans wordpress"
Loane
09 Jan 2021
1<?php
2add_filter( 'preprocess_comment', 'minimal_comment_length' );
3function minimal_comment_length( $commentdata ) {
4     $minimalCommentLength = 20;
5      if ( strlen( trim( $commentdata['comment_content'] ) ) &lt; $minimalCommentLength ){
6       wp_die( 'All comments must be at least ' . $minimalCommentLength . ' characters long.' );
7     }
8     return $commentdata;
9}
10?>
similar questions