?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/brizy/compatibilities/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/brizy

?? Viewing: wp-copyright-protection.php

<?php
/**
 * Compatibility with LiteSpeed plugin: https://wordpress.org/plugins/wp-copyright-protection/
 * This plugin loads a script js which disable the right click on frontend.
 * Its purpose is to prevent users from copying the text from the site, a way to prevent copyright.
 */
class Brizy_Compatibilities_WpCopyrightProtection {

	public function __construct() {
		add_action( 'wp', [ $this, 'disable_js_optimize' ] );
	}

	public function disable_js_optimize() {

		if ( ! Brizy_Public_Main::is_editing() ) {
			return;
		}

		remove_action('wp_head', 'wp_copyright_protection');
	}
}


??

??