diff --git a/inc/alt-experience/init.php b/inc/alt-experience/init.php index 25337320a..dbf20d4b8 100644 --- a/inc/alt-experience/init.php +++ b/inc/alt-experience/init.php @@ -8,10 +8,10 @@ function () { 'manage_options', 'bluehost', function () { - $version = BLUEHOST_PLUGIN_VERSION; + $version = BLUEHOST_PLUGIN_VERSION; $asset_file = BLUEHOST_BUILD_DIR . '/index.asset.php'; if ( is_readable( $asset_file ) ) { - $asset = include_once $asset_file; + $asset = include_once $asset_file; $version = $asset['version']; } @@ -29,3 +29,8 @@ function () { ); } ); + +$bust_mode_path = dirname( __DIR__, 2 ) . '/vendor/newfold-labs/wp-module-performance/includes/BurstSafetyMode/init.php'; +if ( file_exists( $bust_mode_path ) ) { + require_once $bust_mode_path; +}