WordPress文章防複製代碼
醬茄 jiangqie.com
多人問WordPress文章怎麼防止別人複製,今天醬茄小編把代碼分享給大家,通過下面的JS代碼即可有效的防止別人直接複製你的文章,用frame標籤引用你的文章時,會自動跳轉到文章正常鏈接,同時禁止右鍵菜單。
使用方法:
打開當前主題頭部模板header.php找到:<!--?php wp_head(); ?-->將下面代碼添加到後面:
// 醬茄 jiangqie.com 禁止右鍵
document.oncontextmenu = function() {
return false
};
// 醬茄 jiangqie.com 禁止圖片拖放
document.ondragstart = function() {
return false
};
// 醬茄 jiangqie.com 禁止選擇文本
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;
}
};
// 醬茄 jiangqie.com 禁止frame標籤引用
if (parent.frames.length > 0) top.location.replace(document.location);
當然上面的方法,也只是忽悠一下小白,瀏覽器禁用JavaScript後,將失去效果。
文章來自: https://www.jiangqie.com/jc/6540.html
※WordPress後台密碼忘記不用慌 一招極速找回
※TinyPNG圖片壓縮插件讓WordPress訪問更快圖片更小
TAG:醬茄小程序 |