Block robot PHP Code _php tutorial for searching email addresses from your website

Source: Internet
Author: User
Spam is annoying, and the following is a way to automatically block bots from collecting email addresses from your website.
Copy CodeThe code is as follows:
function Security_remove_emails ($content) {
$pattern = '/([a-za-z0-9._%+-]+@[a-za-z0-9.-]+\.[ a-za-z]{2,4})/I ';
$fix = Preg_replace_callback ($pattern,
"Security_remove_emails_logic", $content);

return $fix;
}
function Security_remove_emails_logic ($result) {
return AntiSpamBot ($result [1]);
}
Add_filter (' the_content ', ' flex_remove_emails ', 20);
Add_filter (' Widget_text ', ' flex_remove_emails ', 20);

Put this in the functions.php file, if the robot to collect the email address, it will be automatically blocked.

http://www.bkjia.com/PHPjc/326297.html www.bkjia.com true http://www.bkjia.com/PHPjc/326297.html techarticle spam is annoying, and the following is a way to automatically block bots from collecting email addresses from your website. Copy the code code as follows: function Security_remove_emails ($content) {...

  • 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.