WordPress文章防复制代码

jiangqie.com 酱茄

多人问WordPress文章怎么防止别人复制,今天酱茄小编把代码分享给大家,通过下面的JS代码即可有效的防止别人直接复制你的文章,用frame标签引用你的文章时,会自动跳转到文章正常链接,同时禁止右键菜单。

使用方法:
打开当前主题头部模板header.php找到:将下面代码添加到后面:

// 酱茄 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);
酱茄 jiangqie.com

当然上面的方法,也只是忽悠一下小白,浏览器禁用JavaScript后,将失去效果。

文章来自: https://www.jiangqie.com/jc/6540.html

你可能感兴趣的:(WordPress文章防复制代码)