您好,登錄后才能下訂單哦!
小編給大家分享一下WordPress文章如何實(shí)現(xiàn)防復(fù)制代碼的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
使用方法一:
打開當(dāng)前主題頭部模板header.php找到:<?php wp_head(); ?>將下面代碼添加到后面:
<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標(biāo)簽引用 if (parent.frames.length > 0) top.location.replace(document.location); </script>
使用方法二:
上面的方法查看源代碼時(shí)有些亂,可以在當(dāng)前主題目錄新建一個(gè)名稱為copyright.js文件,將下面代碼添加進(jìn)去:
// 禁止右鍵 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標(biāo)簽引用 if (parent.frames.length > 0) top.location.replace(document.location);
然后再將下面代碼添加到當(dāng)前主題函數(shù)模板functions.php的最后:
function copyrightpro_scripts() { wp_enqueue_script( 'copyright', get_template_directory_uri() . '/copyright.js', array(), false ); } if (! current_user_can('level_10') ) { add_action( 'wp_enqueue_scripts', 'copyrightpro_scripts' ); }
代碼中加了判斷,管理員登錄狀態(tài)一下,防復(fù)制代碼無效。
當(dāng)然上面的方法,也只是忽悠一下小白,瀏覽器禁用JavaScript后,將失去效果。
看完了這篇文章,相信你對(duì)WordPress文章如何實(shí)現(xiàn)防復(fù)制代碼的方法有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。