用代碼設定wordpress留言評價的最大字數,及最小字數

很多人上過論壇,想留言發表評論,卻發現。
有限制字數,不能超過,或不能少於。
那麼我可能用代碼實現wordpress留言評價的最大字數,及最小字數
開啟主題的functions.php加入以下代碼
 
您可以自行修改喔
[cc lang="php"] //用代碼設定wordpress留言評價的最大字數,及最小字數 add_filter( 'preprocess_comment', 'wpb_preprocess_comment' ); function wpb_preprocess_comment($comment) { if ( strlen( $comment['comment_content'] ) > 6000 ) { wp_die('您的留言評論太長了,超出本站最多6000字元的限制(約3000中文字)'); } if ( strlen( $comment['comment_content'] ) < 60 ) { wp_die('您的留言評論太短,最少要60個字元(約30個中文字)'); } return $comment; } [/cc]

評論 (0)

此處尚未發表評論

留言

  1. 以遊客身份發表評論。 註冊登入到您的帳戶。
附件 (0 / 3)
分享您的位置