WordPress评论中禁止HTML代码显示的方法
发布时间:2014-12-24 15:14:25 作者:佚名 我要评论
这篇文章主要为大家介绍了WordPress评论中禁止HTML代码显示的方法,通过增加自定义函数有效防止垃圾评论的产生,是非常实用的技巧,需要的朋友可以参考下
本文实例讲述了WordPress评论中禁止HTML代码显示的方法。分享给大家供大家参考。具体分析如下:
使用WordPress的朋友会发现如果我们开户了博客评论会经常看到大量的垃圾广告,带连接了,那么我们要如何禁止用户输入html标签原样输出,而不显示呢,下面我来给大家介绍.
html标题无非就是由“<”、“>”组成了,我们可以反它转换成“<”、“>”,这样通过HTML编译,自动变成了“<”、“>” 我们也可以直接替换掉了
找到一国外人的代码,搞定了,不过不一定他是原作者,在functions.php的PHP代码里加入如下代码:
复制代码
代码如下://禁用wordpress评论html代码
// This will occur when the comment is posted
function 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;
}
add_filter( 'preprocess_comment', 'plc_comment_post', '', 1);
add_filter( 'comment_text', 'plc_comment_display', '', 1);
add_filter( 'comment_text_rss', 'plc_comment_display', '', 1);
add_filter( 'comment_excerpt', 'plc_comment_display', '', 1);
// This will occur when the comment is posted
function 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;
}
add_filter( 'preprocess_comment', 'plc_comment_post', '', 1);
add_filter( 'comment_text', 'plc_comment_display', '', 1);
add_filter( 'comment_text_rss', 'plc_comment_display', '', 1);
add_filter( 'comment_excerpt', 'plc_comment_display', '', 1);
希望本文所述对大家的WordPress建站有所帮助。
相关文章
- 今天我们要实现的就是即使收到再多的垃圾评论,这些发送评论的站点也不会被搜索引擎索引到。2011-01-30
- 我们经常会遇到nofollow属性,特别是wordpress的评论会自动添加上external nofollow属性。那么什么是nofollow呢?在我们不想要的时候怎么能去掉呢?2012-10-29
- wordpress回复评论文字想修改的童鞋们来看一下介绍啊2012-05-16
- 这篇文章主要为大家介绍了wordpress主题评论中添加回复的方法,可以无需通过插件来实现增加评论回复功能,是非常实用的技巧,需要的朋友可以参考下2014-12-20
- 这篇文章主要为大家介绍了WordPress修改评论默认头像的方法,可实现定制个性化的评论头像功能,非常具有实用价值,需要的朋友可以参考下2014-12-18
- 这篇文章主要为大家介绍了WordPress屏蔽评论中链接地址的方法,可通过自定义函数进行正则替换删除链接,也可增加nofollow来实现优化效果,需要的朋友可以参考下2014-12-18
- 这篇文章主要为大家介绍了WordPress实现评论提交后跳转的方法,需要的朋友可以参考下2014-07-10
- 很多WordPress站长都饱受垃圾评论的自扰,苦不堪言。这篇文章主要为大家介绍了WordPress实现自动拒绝垃圾评论的方法,需要的朋友可以参考下2014-06-24
- WordPress点击评论者链接是在本窗口内打开,用户体验不是特别好,介绍一下wordpress评论者链接在新窗口中打开的方法,解决方法如下2014-01-26
wordpress教程防wordpress广告的方法 评论中包含过多链接不可提交
本文介绍了wordpress评论防广告的方法,代码写在主题目录下functions.php,全英文、超链接>3个均不能pass spam check,超链接就简单使用http作为特征码判断,可以根据实际2014-01-26
最新评论