Linux 软件免费装
Banner图

Concise Antispam

开发者 concisestudio
更新时间 2022年11月2日 03:43
PHP版本: 4.1 及以上
WordPress版本: 6.0
版权: GPLv3

标签

spam anti-spam antispam anti spam

下载

1.0.3 1.0.4 1.0.5 1.0.6 1.0.12 1.0.13 1.0.2 1.0.1 1.0.8 1.0.9 1.0.10 1.0.7 1.0.11

详情介绍:

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.

安装:

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