网站地图    收藏   

主页 > 后端 > wordpress教程 >

WordPress博客评论禁止HTML代码显示 - WordPress

来源:自学PHP网    时间:2014-11-28 23:42 作者: 阅读:

[导读] 使用WordPress的朋友会发现如果我们开户了博客评论会经常看到大量的垃圾广告,带连接了那么我们要如何禁止用户输入html标签原样输出,而不显示呢,下面我来给大家介绍,html标题无非就是...

WordPress博客评论禁止HTML代码显示

使用WordPress的朋友会发现如果我们开户了博客评论会经常看到大量的垃圾广告,带连接了那么我们要如何禁止用户输入html标签原样输出,而不显示呢,下面我来给大家介绍.

html标题无非就是由“<”、“>”组成了,我们可以反它转换成“&lt;”、“&gt;”,这样通过HTML编译,自动变成了“<”、“>” 我们也可以直接替换掉了

找到一国外人的代码,搞定了,不过不一定他是原作者,在functions.php的PHP代码里加入如下代码:

  1. //禁用wordpress评论html代码 
  2. // This will occur when the comment is posted 
  3. function plc_comment_post( $incoming_comment ) { 
  4.  // convert everything in a comment to display literally 
  5.  $incoming_comment['comment_content'] = htmlspecialchars($incoming_comment['comment_content']); 
  6.  // the one exception is single quotes, which cannot be #039; because WordPress marks it as spam 
  7.  $incoming_comment['comment_content'] = str_replace"'", '&apos;', $incoming_comment['comment_content'] ); 
  8.  return$incoming_comment ); 
  9. // This will occur before a comment is displayed 
  10. function plc_comment_display( $comment_to_display ) { 
  11.  // Put the single quotes back in 
  12.  $comment_to_display = str_replace'&apos;'"'"$comment_to_display ); 
  13.  return $comment_to_display
  14. add_filter( 'preprocess_comment''plc_comment_post''', 1); 
  15. add_filter( 'comment_text''plc_comment_display''', 1); 
  16. add_filter( 'comment_text_rss''plc_comment_display''', 1); 
  17. add_filter( 'comment_excerpt''plc_comment_display''', 1); 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论