font_registry = new Kirki_Google_Fonts_Registry(); $kirki->api = new Kirki(); $kirki->scripts = new Kirki_Scripts_Registry(); $kirki->styles = array( 'back' => new Kirki_Styles_Customizer(), 'front' => new Kirki_Styles_Frontend(), ); /** * The path of the current Kirki instance */ Kirki::$path = dirname( __FILE__ ); return $kirki; } global $kirki; $kirki = Kirki(); } /** * Apply the filters to the Kirki::$url */ if ( ! function_exists( 'kirki_filtered_url' ) ) { function kirki_filtered_url() { $config = apply_filters( 'kirki/config', array() ); if ( isset( $config['url_path'] ) ) { Kirki::$url = esc_url_raw( $config['url_path'] ); } } add_action( 'after_setup_theme', 'kirki_filtered_url' ); } include_once( Kirki::$path . DIRECTORY_SEPARATOR . 'includes' . DIRECTORY_SEPARATOR . 'deprecated.php' ); // Include the API class include_once( Kirki::$path . DIRECTORY_SEPARATOR . 'includes' . DIRECTORY_SEPARATOR . 'class-kirki.php' ); if ( ! function_exists( 'kirki_load_textdomain' ) ) { /** * Load plugin textdomain. * * @since 0.8.0 */ function kirki_load_textdomain() { $textdomain = 'kirki'; // Look for WP_LANG_DIR/{$domain}-{$locale}.mo if ( file_exists( WP_LANG_DIR . '/' . $textdomain . '-' . get_locale() . '.mo' ) ) { $file = WP_LANG_DIR . '/' . $textdomain . '-' . get_locale() . '.mo'; } // Look for Kirki::$path/languages/{$domain}-{$locale}.mo if ( ! isset( $file ) && file_exists( Kirki::$path . DIRECTORY_SEPARATOR . 'languages' . DIRECTORY_SEPARATOR . $textdomain . '-' . get_locale() . '.mo' ) ) { $file = Kirki::$path . DIRECTORY_SEPARATOR . 'languages' . DIRECTORY_SEPARATOR . $textdomain . '-' . get_locale() . '.mo'; } if ( isset( $file ) ) { load_textdomain( $textdomain, $file ); } load_plugin_textdomain( $textdomain, false, Kirki::$path . DIRECTORY_SEPARATOR . 'languages' ); } add_action( 'plugins_loaded', 'kirki_load_textdomain' ); } // Add an empty config for global fields Kirki::add_config( '' ); /** * To enable the demo theme, just add this line to your wp-config.php file: * define( 'KIRKI_CONFIG', true ); * Once you add that line, you'll see a new theme in your dashboard called "Kirki Demo". * Activate that theme to test all controls. */ if ( defined( 'KIRKI_DEMO' ) && KIRKI_DEMO && file_exists( dirname( __FILE__ ) . '/demo-theme/style.css' ) ) { register_theme_directory( dirname( __FILE__ ) ); }