這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Concise Antispam

外掛說明

Algorithm

  1. Plugin generates token on the backend side.
  2. Plugin adds hidden field for token in each form which will use method “POST” after rendering of the page.
  3. Plugin inserts token in the field after user’s interaction with site.

For developers

Antispam will automatically check submissions of the regular forms but ignores all AJAX requests.
If you want to change this behaviour, you can use filter concise_antispam_need_to_validate_token.
See example:

Disable Antispam for some forms:

add_filter("concise_antispam_need_to_validate_token", function($needToValidateToken) {
    if (!empty($_POST['do-not-check-antispam-token'])) {
        $needToValidateToken = false;
    }

    return $needToValidateToken;
});

You can also always manually call \Concise\Antispam::validateTokenOrDie() in your custom handler.

Formidable Forms integration

For proper work disable the honeypot checking in the forms

安裝方式

  1. Upload plugin to plugins directory
  2. Active plugin through the “Plugins” menu in WordPress

常見問題集

Please, report about any bug to developer@concise-studio.com

使用者評論

2021 年 2 月 8 日
Thank you so much for this plugin. I didn’t notice the email attack on my client’s web site until 490,000 messages had been blocked and quite a few had gotten through. The number was increasing by about 3000 per minute, and after enabling this plugin, the incoming messages were just STOPPED, INSTANTLY.
2020 年 9 月 8 日
Works like a charm. It doesn’t slow down the page at all and catches all spam with incredible accuracy—I haven’t had to delete a single spammy message since installing it. Excellent work!
閱讀全部 2 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈Concise Antispam〉的開發相關工作。

參與者

將〈Concise Antispam〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄