diff --git a/projects/packages/blaze/src/class-blaze.php b/projects/packages/blaze/src/class-blaze.php index 610d97ffc2ecb..d28214025387e 100644 --- a/projects/packages/blaze/src/class-blaze.php +++ b/projects/packages/blaze/src/class-blaze.php @@ -219,7 +219,12 @@ public static function should_initialize() { * * @param bool $should_initialize Whether Blaze should be enabled. Default to true. */ - return apply_filters( 'jetpack_blaze_enabled', true ); + $should_init = apply_filters( 'jetpack_blaze_enabled', true ); + + return array( + 'can_init' => $should_init, + 'reason' => $should_init ? null : 'initialization_disabled', + ); } // On self-hosted sites, we must do some additional checks.