首页    >    新闻资讯    >   过滤WordPress评论中的链接

过滤WordPress评论中的链接

随着WordPress日渐成为全球最流行的Blog工具,WordPress用户们也不得不面对越来越多在评论里插入链接的行为。有些链接是相关的,有些则完全是Spam。想要对评论里的链接Say Goodbye吗?往下看吧。

在function.php文件中添加如下代码:

function plc_comment_post( $incoming_comment ) {
    $incoming_comment['comment_content'] = htmlspecialchars($incoming_comment['comment_content']);
    $incoming_comment['comment_content'] = str_replace( "'", ''', $incoming_comment['comment_content'] );
    return( $incoming_comment );
}
function plc_comment_display( $comment_to_display ) {
    $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啦! 转载请注明出处。