not possible, if anyone really wants to get (steal) your content, it is possible, even with this extension enabled. It will just make it more complicated. You may choose in admin options the features you need to disable; by default, copy and print are both disabled. Version: 1.0.0 Author: Stéphane Le Merre Author URI: http://www.ligams.com */ if (!class_exists("anticopy")) { class anticopy { var $adminOptionsName = 'anticopy_adminoptions'; function anticopy() { } function init() { $this->getAdminOptions(); } function getAdminOptions() { $anticopy_adminoptions = array( 'anticopy_enabled' => 'true', 'antiprint_enabled' => 'true', ); $anticopy_options = get_option($this->adminOptionsName); if (!empty($anticopy_options)) { foreach ($anticopy_options as $key => $option) $anticopy_adminoptions[$key] = $option; } update_option($this->adminOptionsName, $anticopy_adminoptions); return $anticopy_adminoptions; } function addHeaderAntiCopy() { print ''; print ''; } function addHeaderAntiPrint() { print ''; print ''; } function printAdminPage() { $options = $this->getAdminOptions(); if (isset($_POST['update_wp_anticopy'])) { if (isset($_POST['anticopy_enabled'])) { $options['anticopy_enabled'] = $_POST['anticopy_enabled']; } if (isset($_POST['antiprint_enabled'])) { $options['antiprint_enabled'] = $_POST['antiprint_enabled']; } update_option($this->adminOptionsName, $options); print '
'; _e("Anticopy parameters updated", "wpjschat"); print '