modules = new Kirki_Modules(); Kirki::$url = plugins_url( '', __FILE__ ); // Instantiate classes. new Kirki(); new Kirki_L10n(); // Include deprecated functions & methods. include_once wp_normalize_path( dirname( __FILE__ ) . '/core/deprecated.php' ); // Include the ariColor library. include_once wp_normalize_path( dirname( __FILE__ ) . '/lib/class-aricolor.php' ); // 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 ) ) { include_once $custom_config_path; } // Add upgrade notifications. include_once wp_normalize_path( dirname( __FILE__ ) . '/upgrade-notifications.php' ); // Uncomment this line to see the demo controls in the customizer. /* include_once dirname( __FILE__ ) . '/example.php'; */