| 1 |
<?php |
| 2 |
/** |
| 3 |
* Compat with Divi Builder |
| 4 |
* |
| 5 |
* @package PoweredCache\Compat |
| 6 |
* @link https://www.elegantthemes.com/ |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace PoweredCache\Compat\Divi; |
| 10 |
|
| 11 |
if ( ! defined( 'ABSPATH' ) ) { |
| 12 |
exit; // Exit if accessed directly. |
| 13 |
} |
| 14 |
|
| 15 |
/** |
| 16 |
* Dont use file optimizer when the page on builder mode. |
| 17 |
* |
| 18 |
* @since 2.5 |
| 19 |
*/ |
| 20 |
if ( ! empty( $_GET['et_fb'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
| 21 |
add_filter( 'powered_cache_fo_disable', '__return_true' ); |
| 22 |
} |
| 23 |
|