modules = new Modules(); // Include the ariColor library. require_once wp_normalize_path( dirname( __FILE__ ) . '/lib/class-aricolor.php' ); // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude // Add an empty config for global fields. Kirki::add_config( '' ); $custom_config_path = dirname( __FILE__ ) . '/custom-config.php'; $custom_config_path = wp_normalize_path( $custom_config_path ); if ( file_exists( $custom_config_path ) ) { require_once $custom_config_path; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude }