Answers for "Comment exiger une longueur minimale de commentaire dans WordPress"

PHP
0

Comment exiger une longueur minimale de commentaire dans WordPress

<?php
add_filter( 'preprocess_comment', 'minimal_comment_length' );
function minimal_comment_length( $commentdata ) {
     $minimalCommentLength = 20;
      if ( strlen( trim( $commentdata['comment_content'] ) ) &lt; $minimalCommentLength ){
       wp_die( 'All comments must be at least ' . $minimalCommentLength . ' characters long.' );
     }
     return $commentdata;
}
?>
Posted by: Guest on September-29-2021

Code answers related to "Comment exiger une longueur minimale de commentaire dans WordPress"

Browse Popular Code Answers by Language