Let’s Download WordPress Zero Spam wp plugin It’s the time! You can. Get WordPress Zero Spam 3.0.6 (or higher version) wp plugin created by Ben Marshall and install it for your project.. This WP Plugin 3.0.6 version was updated on 2 years but possibly there is a newer version available.What can you do with this wp plugin? [‘WordPress Zero Spam blocks registration spam and spam in comments automatically without any additional config or setup. Just install, activate, and enjoy a spam-free site.’] Do you want to test WordPress Zero Spam? Let’s check out:
How to Install WordPress Zero Spam WordPress Plugin?
Installation
Plugin Installation
- Upload the
zero-spam
folder to the/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
Theme Integration
You can integrate WordPress Zero Spam with any theme or plugin. Just add the class zerospam
to a form
element and the following at the beginning of your validation function:
<?php
if ( zerospam_is_valid() ) {
// Valid form submission.
} else {
// Invalid form submission.
zerospam_log_spam( 'My Custom Form', 'http://www.myurl.com/custom-form' );
}
For more information and a full list of helpers you can use if your theme or plugin, see the helpers.php
file.