WordPress禁止评论内容中的超链接
WordPress,是垃圾邮件、垃圾评论经常光顾的一个系统。下面的代码将会屏蔽评论内容中的超链接:
function wp_comment_post( $incoming_comment ) { $http = '/[href="|rel="nofollow"|http:\/\/|<\/a>]/u'; if(preg_match($http, $incoming_comment['comment_content'])) { err( "禁止发链接地址!" ); } return( $incoming_comment ); } add_filter('preprocess_comment', 'wp_comment_post');