tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); /** * Image size */ add_image_size( 'flash-square', '300', '300', true ); add_image_size( 'flash-big', '800', '400', true ); add_image_size( 'flash-grid', '370', '270', true ); /** * Enable support for site Logo */ add_theme_support( 'custom-logo' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'flash' ), 'social' => esc_html__( 'Social', 'flash' ), 'footer' => esc_html__( 'Footer', 'flash' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /** * Enable support for woocommerce and woocommerce 3.0 product gallery */ 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' ); /** * Enable support for SiteOrigin Page Builder */ add_theme_support( 'siteorigin-panels', array( 'margin-bottom' => 0, 'recommended-widgets' => false, ) ); /** * Enable Support for selective refresh widgets in Customizer */ add_theme_support( 'customize-selective-refresh-widgets' ); } endif; add_action( 'after_setup_theme', 'flash_setup' ); if ( ! function_exists( 'flash_content_width' ) ) : /** * Set the content width in pixels, based on the theme's design and stylesheet. * * @global int $content_width **/ function flash_content_width() { $content_width = 780; $classes = flash_get_layout(); if ( $classes == 'full-width' ) { $content_width = 1200; } $GLOBALS['content_width'] = apply_filters( 'flash_content_width', $content_width ); } add_action( 'after_setup_theme', 'flash_content_width', 0 ); endif; /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function flash_widgets_init() { // Right Sidebar register_sidebar( array( 'name' => esc_html__( 'Right Sidebar', 'flash' ), 'id' => 'flash_right_sidebar', 'description' => esc_html__( 'Add widgets here for right sidebar.', 'flash' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); // Left Sidebar register_sidebar( array( 'name' => esc_html__( 'Left Sidebar', 'flash' ), 'id' => 'flash_left_sidebar', 'description' => esc_html__( 'Add widgets here for left sidebar.', 'flash' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); // Footer 1 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 1', 'flash' ), 'id' => 'flash_footer_sidebar1', 'description' => esc_html__( 'Add widgets here for footer sidebar 1.', 'flash' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); // Footer 2 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 2', 'flash' ), 'id' => 'flash_footer_sidebar2', 'description' => esc_html__( 'Add widgets here for footer sidebar 2.', 'flash' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); // Footer 3 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 3', 'flash' ), 'id' => 'flash_footer_sidebar3', 'description' => esc_html__( 'Add widgets here for footer sidebar 3.', 'flash' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); // Footer 4 register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar 4', 'flash' ), 'id' => 'flash_footer_sidebar4', 'description' => esc_html__( 'Add widgets here for footer sidebar 4.', 'flash' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'flash_widgets_init' ); /** * Enqueue scripts and styles. */ function flash_scripts() { $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'flash-fonts', flash_fonts_url(), array(), null ); // Font Awessome wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome'.$suffix.'.css' , array(), false, false); // Swiper CSS wp_register_style( 'swiper', get_template_directory_uri() . '/css/swiper'.$suffix.'.css' , array(), false, false); wp_enqueue_style( 'flash-style', get_stylesheet_uri() ); wp_style_add_data( 'flash-style', 'rtl', 'replace' ); // Responsive wp_enqueue_style( 'responsive', get_template_directory_uri() . '/css/responsive'.$suffix.'.css' , array(), false, false); wp_style_add_data( 'responsive', 'rtl', 'replace' ); wp_register_script( 'swiper', get_template_directory_uri() . '/js/swiper.jquery'.$suffix.'.js', array('jquery'), '', true ); if( get_theme_mod( 'flash_sticky_header', '' ) == '1') { wp_enqueue_script( 'sticky', get_template_directory_uri() . '/js/jquery.sticky'.$suffix.'.js', array('jquery'), '', true ); } wp_register_script( 'isotope', get_template_directory_uri() . '/js/isotope.pkgd'.$suffix.'.js', array('jquery'), '', true ); wp_register_script( 'waypoints', get_template_directory_uri() . '/js/waypoints'.$suffix.'.js', array('jquery'), '', true ); wp_register_script( 'counterup', get_template_directory_uri() . '/js/jquery.counterup'.$suffix.'.js', array('jquery'), '', true ); wp_enqueue_script( 'nav', get_template_directory_uri() . '/js/jquery.nav'.$suffix.'.js', array('jquery'), '', true ); wp_enqueue_script( 'flash-custom', get_template_directory_uri() . '/js/flash'.$suffix.'.js', array('jquery'), '', true ); wp_enqueue_script( 'flash-navigation', get_template_directory_uri() . '/js/navigation' . $suffix . '.js', array( 'jquery' ), '', true ); wp_enqueue_script( 'flash-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Replace main style for RTL. wp_style_add_data( 'flash-style', 'rtl', 'replace' ); } add_action( 'wp_enqueue_scripts', 'flash_scripts' ); if ( ! function_exists( 'flash_fonts_url' ) ) : /** * Register Google fonts for Flash. * * Create your own flash_fonts_url() function to override in a child theme. * * @return string Google fonts URL for the theme. */ function flash_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; $fonts[] = get_theme_mod( 'flash_body_font', 'Montserrat:400,700'); if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ), 'https://fonts.googleapis.com/css' ); } return $fonts_url; } endif; /** * Load TGM Activation file. */ require get_template_directory() . '/inc/class-tgm-plugin-activation.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Kirki Toolkit. */ require get_template_directory() . '/inc/kirki/kirki.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Metaboxes. */ require get_template_directory() . '/inc/meta-boxes.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Load WooCommerce compatibility file. */ require get_template_directory() . '/inc/woocommerce.php'; /** * Load SiteOrigin Panels compatibility file. */ require get_template_directory() . '/inc/siteorigin-panels.php'; /** * Load Welcome page file. */ require get_template_directory() . '/inc/class-flash-admin.php'; /** * Load Demo Importer Configs. */ if ( class_exists( 'TG_Demo_Importer' ) ) { require get_template_directory() . '/inc/demo-config.php'; }