AussieDave
24 years & still going!
- Joined
- Nov 28, 2013
- Messages
- 5,103
- Reaction score
- 3,607
Least the WP hacker seems to have been de-ranked somewhat.
Still have to protect yourself from site scraping though. A new site with no authority/no links, gets hit hard if your content gets scraped.
If your using WP and your RSS feed(s) is not being syndicated, it's a new site so I doubt it would be... Then my advice, kill the RSS.
That is don't have the damn thing working. It's just another way that bots scrap your content. I'd also stop Google & other SE's from caching your site too.
You need to plug all the holes that scraper bots and also humans could use to scrape your contextual content. You may also want to stop image hotlinking too.
There's a WP plugin (wp-content-copy-protection) which closes some of the code access points.
This piece of javascript stops your site being loaded into an iframe or frames. It's called a Break Out of frames script. Copy and paste it into the header.php file just before the closing </head> tag.
Still have to protect yourself from site scraping though. A new site with no authority/no links, gets hit hard if your content gets scraped.
If your using WP and your RSS feed(s) is not being syndicated, it's a new site so I doubt it would be... Then my advice, kill the RSS.
That is don't have the damn thing working. It's just another way that bots scrap your content. I'd also stop Google & other SE's from caching your site too.
You need to plug all the holes that scraper bots and also humans could use to scrape your contextual content. You may also want to stop image hotlinking too.
There's a WP plugin (wp-content-copy-protection) which closes some of the code access points.
This piece of javascript stops your site being loaded into an iframe or frames. It's called a Break Out of frames script. Copy and paste it into the header.php file just before the closing </head> tag.
Code:
<script type="text/javascript">
<!--
if (top.location != location) { top.location.href = location.href; }
//-->
</script>