1
xdeng 2013-07-06 16:29:22 +08:00
自带的就有啊
后台评论设置不是有么 |
2
lhx2008 2013-07-06 16:32:36 +08:00
后台设置 评论 黑名单
|
4
Showfom 2013-07-07 18:57:46 +08:00 1
把下面的代码加到主题的 functions.php 里
$KeyWordsFilterAds = array( 'Showfom' => '兽兽小帅锅', '西红柿' => '小番茄', '敏感词' => '文明用户', ); function KeyWordsFilter($content) { global $KeyWordsFilterAds; $content = strtr($content, $KeyWordsFilterAds); return $content; } add_filter('the_content', 'KeyWordsFilter'); |