Mô tả
Algorithm
- Plugin generates token on the backend side.
- Plugin adds hidden field for token in each form which will use method “POST” after rendering of the page.
- 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
Cài đặt
- Upload plugin to plugins directory
- Active plugin through the “Plugins” menu in WordPress
Hỏi đáp
Please, report about any bug to developer@concise-studio.com
Đánh giá
Người đóng góp & Lập trình viên
“Concise Antispam” là mã nguồn mở. Những người sau đã đóng góp vào plugin này.
Những người đóng gópDịch “Concise Antispam” sang ngôn ngữ của bạn.
Muốn tham gia phát triển?
Duyệt code, check out SVN repository, hoặc theo dõi nhật ký phát triển qua RSS.