3
I would like to know how to avoid the pile of spam that arrives in the wordpress comments, either through some plugin (free preference) or through wordpress configuration.
3
I would like to know how to avoid the pile of spam that arrives in the wordpress comments, either through some plugin (free preference) or through wordpress configuration.
0
ALTERNATIVES
Via Plugin: Spam Comments Cleaner: https://wordpress.org/plugins/spam-comments-cleaner/
Through the Phpmyadmin:
You can do this on Phpmyadmin with a query:
DELETE from wp_comments WHERE comment_approved = '0'
DELETE from wp_comments WHERE comment_approved = '1'
DELETE from wp_comments WHERE comment_approved = 'spam'
DELETE from wp_comments WHERE comment_approved = 'trash'
This will erase all approved comments - see if this is the currentwp_ prefix of the database table and remember to back up your database first.
source: http://blogtimenow.com/wordpress/mass-delete-comments-wordpress-spam-pending-approved/
but this sql will erase the comments I approved. I just want to block spam
I EDITED THE ANSWER
@Vshenrique, this is the best example.
Browser other questions tagged wordpress
You are not signed in. Login or sign up in order to post.
akismet solves the problem very well. http://akismet.com/plans/ It has a free plan.
– WeezHard