Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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;
}
?>
Source by wpformation.com #
 
PREVIOUS NEXT
Tagged: #Comment #exiger #une #longueur #minimale #de #commentaire #dans #WordPress
ADD COMMENT
Topic
Name
7+6 =