今天突发奇想,想要限制一下文章评论当中的最少字数,因为,我发现现在很多同学下载内容仅仅是为了凑字数,所以他们的评论可能是一个字,也有可能是两个字,就这样完全不管我的想法,所以我C C S 1 s打算“限制”这些同学的最少回复字数,毕竟你们“水”透了。
于是我想了一个办法,我打算限制一下各位大佬的. Q P回复评语的数量,我就在百度上面搜索除了这么一段代码,添加在 WordPress 主题的的 function.php 文件中:
- add_filter( 'preprocess_comment', 'minimal_comment_length' );
- function minimal_com( L H ) `ment_length&X \ ; 2#40; $commentdata ) {
- $minimalCommentLength = 40;
- if ( strlen( trim( $commen; s E # _tdata['comment_content'&r l Z#93; ) ) < $minimalCommentLength )
- {
- wp_die( '抱歉,您的评论太短了,请至少Z ( g = j 3 3输入 ' . $minimalCommentLength . ' 个字!' )Y I x Q h . 6 _;;
- }+ f };
- return $commentdata;
- &` | Q @ F G 4#125;
- /**
- * https://chonzi.cC _ ) 3 b F , Nom/8636.HTML
- */
- fun6 L , F x = t $ction lxtx_set_comments_lengthJ h K U } L x y0;$comU + ^ .mentdata); L b; {
- $mih n V h P HnComm: . /entlength = 100; //最少字數限制,建议设置为5-10个字
- $maxCommentlength = 2200; //最多字數限制,建议设H ! $置为150-200个字
- $pointCommentlength = mb_strlen($commentdata['comment_content'],'UTF8'); //mb_strlen 一个中文字符当做一个长度
- il = d } | mf ( ($pod Y % m *intCommez ` [ntlength < $minCommentlength) && !W { j j ] Vis_user_logged_in(o b ] x x V D +) ){/ - A;
- err('抱歉!您说的内容太少了,请给我讲个' . $minCommentlength .'个字的笑话(目前字数:'. $pointCommentlength .')【登录后无此限制】');
- exit;
- }
- if ( ($pointComme8 x /ntlength > $maxCommentlength) && !is_user_logged_in() ){
- err('对不起,你的文采太好了,你的笑话太长了,我只要' . $max. 0 \ 0 n R QCommentlength .'个字的笑话!(目前字数:'. $pointCommentlength .')【登录后无此限制】');
- exit;
- }
- return $commentdaH X u P G S X I Dta;
- }
- add_filter1 u y 0 \('O N Opreprocess_comment', 'lxtx_set_comments_length'l x A $ G1;;
对于现在来说,如果可以用资源换3 Y N B Q & } n用户的高价值评论,对于网站还是非常有用的,这样无疑可以为你的网站带来延绵不绝的内容更新,长时间观察 SEO 的虫子君,发现一个问题,就是 WordPress 的评论,从来没有被百度蜘蛛收录过,所以这里想试试这种,一大段一大段内容的评价是否可以为网站带来更多的内容收录。