很多用戶為了下載 wordpress 主題,隨意評論,有的人甚至就回復 1~2 個字,太敷衍了,太傷博主的心了,所以博主就想了個法子,讓他們多寫幾個字,這個方法就是控制文章評論最少字數。
實現起來也挺簡單的把下面的代碼添加的 WordPress 主題的 function.php 文件中即可。
add_filter( 'preprocess_comment', 'minimal_comment_length' ); function minimal_comment_length( $commentdata ) { $minimalCommentLength = 40; if ( strlen( trim( $commentdata['comment_content'] ) ) < $minimalCommentLength ){ wp_die( '抱歉,您的評論太短了,請至少輸入 ' . $minimalCommentLength . ' 個字!' ); } return $commentdata; } /* * WordPress控制文章評論最少字數 */ function lxtx_set_comments_length($commentdata) { $minCommentlength = 100; //最少字數限制,建議設置為5-10個字 $maxCommentlength = 2200; //最多字數限制,建議設置為150-200個字 $pointCommentlength = mb_strlen($commentdata['comment_content'],'UTF8'); //mb_strlen 一個中文字符當做一個長度 if ( ($pointCommentlength < $minCommentlength) && !is_user_logged_in() ){ err('抱歉!您說的內容太少了,請給我講個' . $minCommentlength .'個字的笑話(目前字數:'. $pointCommentlength .')【登錄后無此限制】'); exit; } if ( ($pointCommentlength > $maxCommentlength) && !is_user_logged_in() ){ err('對不起,你的文采太好了,你的笑話太長了,我只要' . $maxCommentlength .'個字的笑話!(目前字數:'. $pointCommentlength .')【登錄后無此限制】'); exit; } return $commentdata; } add_filter('preprocess_comment', 'lxtx_set_comments_length');