Changeset 2252045
- Timestamp:
- 02/28/2020 04:41:44 PM (6 years ago)
- Location:
- wp-copy-content-protection
- Files:
-
- 1 added
- 2 edited
-
tags/1.1.zip (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-copy-content-protection.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-copy-content-protection/trunk/readme.txt
r2231122 r2252045 6 6 Tested up to: 5.3.2 7 7 Requires PHP: 5.2 8 Stable tag: 1. 18 Stable tag: 1.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 76 76 * This is the second version of the plugin. It is fully-tested and stable version. 77 77 78 = 1.2 = 79 * This is the second version of the plugin. It is fully-tested and stable version. Fixed the code for PHP 7.x 80 -
wp-copy-content-protection/trunk/wp-copy-content-protection.php
r2231122 r2252045 4 4 * Plugin URI : https://bloggerpng.com 5 5 * Description: WP Copy Content Protection wordpress plugin protects the content from being stolen by content thieves by disabling right-mouse click and disabling keyboard commands. If someone copies the content then you can gain backlink for your blog by showing him Copyright Information with copied text, and more. 6 * Version: 1. 16 * Version: 1.2 7 7 * Author: Blogger PNG 8 8 * Author URI: https://bloggerpng.com … … 146 146 } 147 147 148 add_action('wp_enqueue_scripts', wccp_copy_protection_enq_script);149 add_action('wp_head', wccp_copy_protection_code);148 add_action('wp_enqueue_scripts', 'wccp_copy_protection_enq_script'); 149 add_action('wp_head', 'wccp_copy_protection_code'); 150 150 151 151 function wccp_copy_protection_enq_script()
Note: See TracChangeset
for help on using the changeset viewer.