禁止评论昵称和内容中包含网址的解决办法
找到\twcms\control下的comment_control.class.php
保存之后去后台清除缓存即可.
打开之后找到:// 关闭全站评论(大约在63行)
在这句上面加上如下代码:
1 2 3 | ( stripos ( $content , '.com' ) || stripos ( $content , '.cn' ) || stripos ( $content , '.net' )|| stripos ( $content , '.org' )|| stripos ( $content , '.cc' )|| stripos ( $content , '.com.cn' )) && $this ->message(0, '内容不可以留网址!' ); ( stripos ( $author , '.com' ) || stripos ( $author , '.cn' ) || stripos ( $author , '.net' )|| stripos ( $author , '.org' )|| stripos ( $author , '.cc' )|| stripos ( $author , '.com.cn' )) && $this ->message(0, '昵称不可以写网址!' ); |
保存之后去后台清除缓存即可.
打赏
支付宝打赏
微信打赏
评论