21 lines
642 B
PHP
21 lines
642 B
PHP
<?php
|
|
|
|
class Brizy_Compatibilities_Autoptimize {
|
|
|
|
public function __construct() {
|
|
add_action( 'wp', array( $this, 'disable_js_optimize' ), 11 );
|
|
}
|
|
|
|
/**
|
|
* Enable noptimize param in the autoptimize plugin class autoptimizeScripts.
|
|
* It is used to perfom some actions above js scripts like: minify, concatenate ...
|
|
* When we are in post build mode with brizy we disable it.
|
|
*/
|
|
public function disable_js_optimize() {
|
|
if ( isset( $_GET[ Brizy_Editor::prefix('-edit-iframe') ] ) ) {
|
|
add_filter( 'autoptimize_filter_js_noptimize', '__return_true' );
|
|
add_filter( 'autoptimize_filter_css_noptimize', '__return_true' );
|
|
}
|
|
}
|
|
}
|