Stop Copying Website Articles on Blogger or WordPress

Stop Copying Website Articles on Blogger or WordPress

Many people who write articles on the website have done a lot of research and searched for many references to write the article themselves. But some people easily copy and misuse other's articles. Here is a way to prevent this.


Blogger

Blogger is provided by Google for free. Let's see how to prevent the posts written in it from being copied. Blogger doesn't have any special security system to block the post. But it can be protected using some HTML code.

Go to Themes in your Blogger and click Edit HTML to open it. Then, copy and paste any of the following coding between the two <head> and </head> tags and save the HTML Coding.

Coding:

<script type='text/javascript'> 

if (typeof document.onselectstart != "undefined") 

{document.onselectstart = new Function("return false");} 

else

{document.onmouseup = new Function("return false"); 

document.onmousedown = new Function("return false");}

</script>


---------------------------------- or -------------------------------------


<script src='demo-to-prevent-copy-paste-on-blogger_files/googleapis.js'/>

<script type='text/javascript'>

if (typeof document.onselectstart!=&quot;undefined&quot;) 

{document.onselectstart=new Function (&quot;return false&quot; );}

Else

{document.onmousedown=new Function (&quot;return false&quot; );document.onmouseup=new Function (&quot;return false&quot;); }

</script>

Download the link


WordPress

Today WordPress has become the main thing used by everyone to create a website. Let's see how to protect the articles posted on the website we created.

This can be done in the following two ways.


Method #01: Prevent article copying using CSS coding.

This method is very easy to use. Below I have mentioned the CSS coding required to do this and the method to do it.

First, open your WordPress account. Then, open Appearance → Customize → Additional CSS. Next, copy and paste the below coding into Additional CSS.


* {

  -webkit-touch-callout: none; /* iOS Safari */

  -webkit-user-select: none; /* Safari */

  -khtml-user-select: none; /* Konqueror HTML */

  -moz-user-select: none; /* Old versions of Firefox */

  -ms-user-select: none; /* Internet Explorer or Edge */

   user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */

}

Download the link


Method #02: Prevent article copying using a Plugin.

This method is much easier than method 01. WordPress users will be familiar with the plugin. This is similar to how we install and use other plugins. Use one of the following plugins.

  1. WP Content Copy Protection
  2. WP Content Copy Protection & No Right Click

After installation, you can open the plugin and change the setting as per your need or leave it as default.


Post a Comment

0 Comments