您好,登錄后才能下訂單哦!
小編給大家分享一下WordPress文章如何實現防復制代碼的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
使用方法一:
打開當前主題頭部模板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標簽引用 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( 'copyright', get_template_directory_uri() . '/copyright.js', array(), false ); } if (! current_user_can('level_10') ) { add_action( 'wp_enqueue_scripts', 'copyrightpro_scripts' ); }
代碼中加了判斷,管理員登錄狀態一下,防復制代碼無效。
當然上面的方法,也只是忽悠一下小白,瀏覽器禁用JavaScript后,將失去效果。
看完了這篇文章,相信你對WordPress文章如何實現防復制代碼的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。