אם אינכם מעוניינים בתגובות קצרות לפוסטים שלכם כגון 'תודה !' או 'מאמר נפלא…' וכו׳.. הוסיפו את הקוד הבא לקובץ functions.php
, וקבעו את מספר התווים המינימלי בשורה מספר 4.
function minimal_comment_length( $commentdata ) {
$minimalCommentLength = 20;
if ( strlen( trim( $commentdata['comment_content'] ) ) < $minimalCommentLength ) {
wp_die( 'התגובה חייבת להכיל ' . $minimalCommentLength . ' תווים לפחות.' );
}
return $commentdata;
}
add_filter( 'preprocess_comment', 'minimal_comment_length' );