[摘要]相信大部门WP博主都知道,wordpress 默认的评论可以包罗各类HTML标志语言,如超链接、加粗加斜、表单等等,这是一个不错的支持成果,但又是一个很坏的支持成果,因为这个成果在评论友好的同时也把垃圾评论留言招引来了,受过垃圾评论毒害的博主都知道垃圾留言的贫苦。所以有时候禁用 wordpress 评论里的HTML标志长短常有须要的。
禁用 wordpress 评论的HTML标志:
在博客当前利用的主题模板中的functions.php文件(假如没有就本身建设一个)中的<?php和?>之间添加以下代码:
// This will occur when the comment is postedfunction plc_comment_post( $incoming_comment ) {
// convert everything in a comment to display literally
$incoming_comment['comment_content'] = htmlspecialchars($incoming_comment['comment_content']);
// the one exception is single quotes, which cannot be #039; because WordPress marks it as spam
$incoming_comment['comment_content'] = str_replace( "'", ''', $incoming_comment['comment_content'] );
return( $incoming_comment );
}
// This will occur before a comment is displayed
function plc_comment_display( $comment_to_display ) {
// Put the single quotes back in
$comment_to_display = str_replace( ''', "'", $comment_to_display );
return $comment_to_display;
生存文件后,WP评论里的HTML标志就会失效。
本文转自:博客吧
分享到
sssssTags: wordpress wordpress能力 wordpress 评论 责任编辑:mozi
上一篇:Discuz!云平台 全面临接腾讯处事
下一篇:封锁 WordPress 3 修订版本和自动生存
相关报导
· 新浪SAE搭建WordPress网站牢靠链接配置url静态化
· 百度官方WORDPRESS布局化数据插件百度SITEMAP宣布
· WORDPRESS丢失打点员权限的办理步伐
· 利用SQL来打点你的WordPress评论
· 通过自界说模板,为你的WordPress主题添加文章名目
· wordpress去掉分类category符号代码实现版本
· 让WordPress飞起来,加快WP的根基能力
DEDECMS教程:列表页缩略图随机挪用
本次DEDECMS教程小编为各人讲授DEDECMS列表页中随机挪用缩略图的要领,默认的缩略图是取第一张图片,通过修...具体