WordPress comments prohibit the specified content (English content) specific methods

Source: Internet
Author: User
Tags comments

A lot of friends may find that there is a lot of English rubbish content, the following given a function

The code is as follows Copy Code

<?php

function Scp_comment_post ($incoming _comment) {

$pattern = '/[one-?] /U ';

Ban all comments in English

if (!preg_match ($pattern, $incoming _comment[' comment_content ')) {

Wp_die ("Your should type some Chinese word (like" hello ") in your comment to pass the Spam-check, for your patience! Your comments must contain Chinese characters! ");

}

Return ($incoming _comment);
}

The following code forbids the comment to include <a casually href= "or rel=" nofollow "or http://, you can also modify according to your own needs:

  code is as follows copy code

function Lianyue_comment_post ($incoming _comment) { 
$http = '/[href= |rel= ' nofollow ' |http://|</a>]/u ';
if (Preg_match ($http, $incoming _comment[' comment_content ')) {
Wp_die ("The Devil's Machine!");  

Return ($incoming _comment); 

add_filter (' preprocess_comment ', ' Lianyue_c Omment_post ');

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.