From eb71dce2f4a9d2835b7af7fe724ec29e04253524 Mon Sep 17 00:00:00 2001 From: Mamatha Rao Date: Wed, 24 Jan 2024 19:29:42 +0530 Subject: [PATCH] Added current theme to runtime --- includes/Runtime.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/Runtime.php b/includes/Runtime.php index ef73e58..be403c3 100644 --- a/includes/Runtime.php +++ b/includes/Runtime.php @@ -60,6 +60,7 @@ public function prepareRuntime() { 'isWoocommerceActive' => is_plugin_active( 'woocommerce/woocommerce.php' ), 'isJetpackBoostActive' => is_plugin_active( 'jetpack-boost/jetpack-boost.php' ), 'wpVersion' => $wp_version, + 'currentTheme' => wp_get_theme()->get('Name'), ) ); }