false, 'width' => 1600, 'height' => 500, 'flex-width' => true, 'flex-height' => true, ) ); add_theme_support( 'custom-background', apply_filters( 'antreas_background_args', array() ) ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'custom-logo', array( //come back later and modify this values 'width' => 90, 'height' => 43, 'flex-width' => true, 'flex-height' => true, ) ); add_theme_support( 'woocommerce' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); add_theme_support( 'bbpress' ); add_post_type_support( 'page', 'excerpt' ); add_theme_support( 'customize-selective-refresh-widgets' ); //Set content width for embeds global $content_width; if ( ! isset( $content_width ) ) { $content_width = 640; } //Remove WordPress version number for security purposes remove_action( 'wp_head', 'wp_generator' ); //Load translation text domain and make translation available $languages_path = get_template_directory() . '/languages'; if ( defined( 'ANTREAS_CORE' ) ) { $languages_path = ANTREAS_CORE . '/languages'; } load_theme_textdomain( 'antreas', $languages_path ); //load_theme_textdomain('antreas', get_template_directory().'/languages'); $locale = get_locale(); $locale_file = get_template_directory() . "/languages/$locale.php"; if ( is_readable( $locale_file ) ) { require_once $locale_file; } $antreas_settings = get_option( 'antreas_settings' ); if ( isset( $antreas_settings['general_css'] ) ) { wp_update_custom_css_post( $antreas_settings['general_css'] ); unset( $antreas_settings['general_css'] ); update_option( 'antreas_settings', $antreas_settings ); } // Backward compatibility for epsilon framework. $epsilon = get_option( 'epsilon_framework_update' ); if ( ! $epsilon ) { $req_plugins = get_option( ANTREAS_PREFIX . '_show_recommended_plugins' ); $updated_req_plugins = array(); if ( is_array( $req_plugins ) ) { foreach ( $req_plugins as $key => $value ) { $updated_req_plugins[ $key ] = $value ? false : true; } update_option( ANTREAS_PREFIX . '_show_recommended_plugins', $updated_req_plugins ); } add_option( 'epsilon_framework_update', true ); } } } // Add Public scripts. if ( ! function_exists( 'antreas_scripts_front' ) ) { add_action( 'wp_enqueue_scripts', 'antreas_scripts_front' ); function antreas_scripts_front() { // Enqueue necessary scripts already in the WordPress core. if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Register custom scripts for later enqueuing. wp_register_script( 'antreas_cycle', ANTREAS_ASSETS_JS . 'jquery-cycle2.js', array( 'jquery' ), ANTREAS_VERSION, true ); wp_register_script( 'antreas-magnific', ANTREAS_ASSETS_JS . 'jquery-magnific.js', array( 'jquery' ), ANTREAS_VERSION, true ); wp_enqueue_script( 'antreas_html5', ANTREAS_ASSETS_JS . 'html5.js', array(), ANTREAS_VERSION ); wp_enqueue_script( 'antreas_core', ANTREAS_ASSETS_JS . 'core.js', array(), ANTREAS_VERSION, true ); } } //Add Admin scripts if ( ! function_exists( 'antreas_scripts_back' ) ) { add_action( 'admin_enqueue_scripts', 'antreas_scripts_back' ); function antreas_scripts_back() { wp_enqueue_script( 'antreas_script_admin', ANTREAS_ASSETS_JS . 'admin.js', array(), ANTREAS_VERSION ); } } if ( ! function_exists( 'antreas_scripts_customizer' ) ) { add_action( 'customize_controls_enqueue_scripts', 'antreas_scripts_customizer' ); function antreas_scripts_customizer() { wp_enqueue_style( 'antreas-customizer-controls', ANTREAS_ASSETS_CSS . 'customizer-controls.css', array(), ANTREAS_VERSION ); wp_register_script( 'antreas-selectize', ANTREAS_ASSETS_JS . 'selectize.js', array( 'jquery' ), ANTREAS_VERSION ); wp_enqueue_script( 'antreas-customizer-controls', ANTREAS_ASSETS_JS . 'customizer-controls.js', array( 'jquery', 'customize-controls' ), ANTREAS_VERSION, true ); } } if ( ! function_exists( 'antreas_scripts_customizer_preview' ) ) { add_action( 'customize_preview_init', 'antreas_scripts_customizer_preview' ); function antreas_scripts_customizer_preview() { wp_enqueue_script( 'antreas_customizer-preview', ANTREAS_ASSETS_JS . 'customizer-preview.js', array( 'customize-preview' ), ANTREAS_VERSION, true ); } } if ( ! function_exists( 'antreas_styles_customizer_preview' ) ) { add_action( 'customize_preview_init', 'antreas_styles_customizer_preview' ); function antreas_styles_customizer_preview() { wp_enqueue_style( 'antreas-customizer-preview', ANTREAS_ASSETS_CSS . 'customizer-preview.css', array(), ANTREAS_VERSION ); } } //Add public stylesheets if ( ! function_exists( 'antreas_add_styles' ) ) { add_action( 'wp_enqueue_scripts', 'antreas_add_styles' ); function antreas_add_styles() { wp_register_style( 'antreas-magnific', ANTREAS_ASSETS_CSS . 'magnific.css', array(), ANTREAS_VERSION ); wp_register_style( 'antreas-fontawesome', ANTREAS_ASSETS_CSS . 'icon-fontawesome.css', array(), ANTREAS_VERSION ); // Common styles. wp_enqueue_style( 'antreas-main', ANTREAS_ASSETS_CSS . 'style.css', array(), ANTREAS_VERSION ); } } //Add admin stylesheets if ( ! function_exists( 'antreas_add_admin_styles' ) ) { add_action( 'admin_print_styles', 'antreas_add_admin_styles' ); function antreas_add_admin_styles() { $screen = get_current_screen(); if ( 'post' == isset( $screen->base ) && $screen->base ) { add_editor_style( ANTREAS_ASSETS_CSS . 'editor.css' ); wp_enqueue_style( 'antreas_admin', ANTREAS_ASSETS_CSS . 'admin.css', array(), ANTREAS_VERSION ); wp_enqueue_style( 'antreas-fontawesome', ANTREAS_ASSETS_CSS . 'icon-fontawesome.css', array(), ANTREAS_VERSION ); } wp_enqueue_style( 'antreas-selectize-css', ANTREAS_ASSETS_CSS . 'selectize.css', array(), ANTREAS_VERSION ); } } // Add all Core components. $core_path = get_template_directory() . '/core/'; if ( defined( 'ANTREAS_CORE' ) ) { $core_path = ANTREAS_CORE; } // Classes. require_once $core_path . 'classes/class_menu.php'; require_once $core_path . 'classes/class_customizer.php'; require_once $core_path . 'classes/class-antreas-menu-edit-walker.php'; require_once $core_path . 'classes/class-antreas-customize-contactform-control.php'; require_once $core_path . 'classes/class-antreas-customize-tinymce-control.php'; require_once $core_path . 'classes/class-antreas-customize-selectize-control.php'; require_once $core_path . 'classes/class-antreas-customize-dimensions-control.php'; // Main Components. require_once $core_path . 'functions.php'; require_once $core_path . 'markup.php'; require_once $core_path . 'filters.php'; require_once $core_path . 'meta.php'; require_once $core_path . 'metaboxes.php'; require_once $core_path . 'forms.php'; require_once $core_path . 'sections.php'; require_once $core_path . 'taxonomy.php'; require_once $core_path . 'icons.php'; require_once $core_path . 'layout.php'; require_once $core_path . 'menus.php'; require_once $core_path . 'cpo-companion.php'; require_once $core_path . 'customizer.php'; require_once $core_path . 'gutenberg.php'; // Metadata. require_once $core_path . 'metadata/data_general.php'; require_once $core_path . 'metadata/data_icons.php'; require_once $core_path . 'metadata/data_metaboxes.php'; require_once $core_path . 'metadata/data_customizer.php';