< The TECH Repository » 2009 » October » 26

Few ways to avoid copying the contents of your blog.

In the world of blogging,problems that many face is that their blog content being copied by someone. Many people gets disappointed and find it difficult to prevent it. But, Today lets learn some ways to prevent copying the content of your blog.

Method 1: Disable right mouse click :

The first method is to disable the right click. To do this, we must change the body of our HTML. At the back end, go to Template / Edit HTML and go to the header.php section. Then simply change the tag <body> by the following (which will prevent the selection of text and images from a post):

<body onmousedown=’return false;’ onselectstart=’return false;’> Continue reading »