WordPress文章防複製程式碼的方法

藏色散人
發布: 2019-11-08 11:34:15
轉載
2470 人瀏覽過

透過下面的JS程式碼,可以有效地防止別人直接複製拷貝你的文章,用frame標籤引用你的文章時,會自動跳到文章正常鏈接,同時禁止右鍵選單。以下由WordPress教學專欄為大家介紹具體方法。

WordPress文章防複製程式碼的方法

使用方法一:

#開啟目前主題頭部模板header.php找到:將下面程式碼加到後面:

<script>
// 禁止右键
document.oncontextmenu = function() {
return false
};
// 禁止图片拖放
document.ondragstart = function() {
return false
};
// 禁止选择文本
document.onselectstart = function() {
if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password") return false;
else return true;
};
if (window.sidebar) {
document.onmousedown = function(e) {
var obj = e.target;
if (obj.tagName.toUpperCase() == "INPUT" || obj.tagName.toUpperCase() == "TEXTAREA" || obj.tagName.toUpperCase() == "PASSWORD") return true;
else return false;
}
};
// 禁止frame标签引用
if (parent.frames.length > 0) top.location.replace(document.location);
</script>
登入後複製

使用方法二:

上面的方法查看原始程式碼時有些亂,可以在當前主題目錄新建一個名稱為copyright.js文件,將下面程式碼加入進去:

// 禁止右键
document.oncontextmenu = function() {
return false
};
// 禁止图片拖放
document.ondragstart = function() {
return false
};
// 禁止选择文本
document.onselectstart = function() {
if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password") return false;
else return true;
};
if (window.sidebar) {
document.onmousedown = function(e) {
var obj = e.target;
if (obj.tagName.toUpperCase() == "INPUT" || obj.tagName.toUpperCase() == "TEXTAREA" || obj.tagName.toUpperCase() == "PASSWORD") return true;
else return false;
}
};
// 禁止frame标签引用
if (parent.frames.length > 0) top.location.replace(document.location);
登入後複製

然後再將下面程式碼加入到目前主題函數模板functions.php的最後:

function copyrightpro_scripts() {
wp_enqueue_script( &#39;copyright&#39;, get_template_directory_uri() . &#39;/copyright.js&#39;, array(),  false );
}
 
if (! current_user_can(&#39;level_10&#39;) ) {
add_action( &#39;wp_enqueue_scripts&#39;, &#39;copyrightpro_scripts&#39; );
}
登入後複製

程式碼中加了判斷,管理員登入狀態一下,防複製程式碼無效。

當然上面的方法,也只是忽悠一下小白,瀏覽器停用JavaScript後,就會失去效果。

以上是WordPress文章防複製程式碼的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:zmingcx.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板