diff --git a/projects/packages/classic-theme-helper/src/class-main.php b/projects/packages/classic-theme-helper/src/class-main.php index 5723fa4567445..3d4d5996e2025 100644 --- a/projects/packages/classic-theme-helper/src/class-main.php +++ b/projects/packages/classic-theme-helper/src/class-main.php @@ -44,9 +44,9 @@ public static function init() { self::$instance = new Main(); self::$instance->load_modules(); // TODO Commenting below since we still load them from theme-tools module - // add_action( 'init', array( __CLASS__, 'jetpack_load_theme_tools' ), 30 ); + add_action( 'init', array( __CLASS__, 'jetpack_load_theme_tools' ), 30 ); // phpcs:ignore Squiz.PHP.CommentedOutCode.Found - add_action( 'after_setup_theme', array( __CLASS__, 'jetpack_load_theme_compat' ), -1 ); // for now + // add_action( 'after_setup_theme', array( __CLASS__, 'jetpack_load_theme_compat' ), -1 ); } return self::$instance;