When checking through one of my post, I realized that I have given backlink to spammers. Spammers give trackback to my post, thus the post in my blog gave backlink to them. It is bad to give backlink to spammers, because Google can penalize our blog. Do not give backlink to blog that Google hates (spammers). There are two ways to tell whether a blog is spammers or not:
- Go to Google and search “site:domainname.com”. Change the “domainname.com” with the domain name you want to check. If they are spammers, Google with not show any results.
- Spammers usually have “?p=67365″ on their links. The links contains ID of the post.
To delete the previous spammers link that I have approved, I went to PhpMyAdmin, and do execute this query:
SELECT *
FROM `wp_comments`
WHERE comment_author_url LIKE ‘%?p%’
This will return all comments that have “?p” in their links. Then I will choose the comments which I will delete.
Related posts:












2 comment(s)
Track this comments via RSS 2.0 feed. Feel free to post the comment, or trackback from your web site.
I had never come across spammers using this technique, but it is a good thing to look out for. Some spammers may be more creative then others and checking Google for backlinks may not always work.
very usefull article. Thank you for your tips. i check my site first.hooo
Any feedback from you?