• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn tạo plugin chống sao chép cho wordpress đơn giản

Admin

Well-Known Member
Staff member
Administrator
Với bài viết này sẽ giúp bạn ngăn cản việc sao chép cho blog wordpress của bạn, giúp bảo vệ bản quyền
Plugin này kết hợp giữa javascript chống click chuột phải và css chống sao chép
Hướng dẫn:
1. Tạo tập tin tuoitreit_chongcopy.php ngang hàng index.php dán code này vào
PHP:
<?php
define( 'PLUGIN_URL', plugin_dir_url( __FILE__ ) );
function tuoitreit_function() {
echo '<script type="text/javascript" src="'.PLUGIN_URL.'tuoitreit_chongsaochep.js"></script>';
echo '<link rel="stylesheet" href="'.PLUGIN_URL.'tuoitreit_chongsaochep.css" type="text/css" />';
}
add_action( 'wp_head', 'tuoitreit_function' );
?>
2. Tạo tập tin tuoitreit_chongsaochep.js dán code này vào
HTML:
var message="NoRightClicking"; function defeatIE() {if (document.all) {(message);return false;}} function defeatNS(e) {if (document.layers||(document.getElementById&&!document.all)) { if (e.which==2||e.which==3) {(message);return false;}}} if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=defeatNS;} else{document.onmouseup=defeatNS;document.oncontextmenu=defeatIE;} document.oncontextmenu=new Function("return false")
3. Tạo tập tin tuoitreit_chongsaochep.css dán code này vào
HTML:
body{
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
}
Lưu lại là xong
Chúc các bạn thành công!
Bài viết chỉ đăng duy nhất tại tuoitreit.vn, mọi sự sao chép phải ghi nguồn và liên kết đến bài viết gốc.
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top