Spam in WordPress?

Tips how to prevent WordPress blog from trackback spam.

  • Go to Settings ->Discussion -> uncheck box “Allow link notifications from other blogs (pingbacks and trackbacks).
  • unfortunately it will resolve problem only for the new posts. To block spammers in already existing posts, go to your phpmyadmin panel and inside of your database, in the SQL tab execute the following lines:

UPDATE wp_posts SET ping_status=’closed’ WHERE post_status = ‘publish’ AND post_type = ‘post’;
UPDATE wp_posts SET ping_status=’closed’ WHERE post_status = ‘publish’ AND post_type = ‘page’;

phpmyadmi

Leave a Reply

Your email address will not be published. Required fields are marked *

CAPTCHA
Change the CAPTCHA codeSpeak the CAPTCHA code
 

This site uses Akismet to reduce spam. Learn how your comment data is processed.