用代码设定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'] ) XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX 60 ) { wp_die('您的留言评论太短,最少要60个字元(约30个中文字)'); } return $comment; }[/cc]