Files
branddefense.pl/wp-content/plugins/brizy/compatibilities/wordpress-mu-domain-mapping.php
Roman Pyrih c2e100a763 first commit
2023-07-24 08:30:51 +02:00

17 lines
563 B
PHP

<?php
/**
* Compatibility with WordPress MU Domain Mapping plugin: https://wordpress.org/plugins/wordpress-mu-domain-mapping/
*/
class Brizy_Compatibilities_WordpressMuDomainMapping {
public function __construct() {
add_action( 'template_redirect', array( $this, 'remove_redirect_to_mapped_domain' ), 9 );
}
public function remove_redirect_to_mapped_domain() {
if ( isset( $_GET[Brizy_Editor::prefix('-edit')] ) || isset( $_GET[Brizy_Editor::prefix('-edit-iframe')] ) ) {
remove_action( 'template_redirect', 'redirect_to_mapped_domain' );
}
}
}