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 http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); add_image_size('eightmedi-main-slider', 1170, 590, false); add_image_size('eightmedi-lite-archive-image', 640, 585, true); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'eightmedi-lite' ), ) ); /* * 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 Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'eightmedi_lite_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); add_theme_support( 'custom-logo' , array( 'header-text' => array( 'site-title', 'site-description' ), )); add_theme_support( 'woocommerce' ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, and column width. */ add_editor_style( array( 'css/editor-style.css') ); } endif; // eightmedi_lite_setup add_action( 'after_setup_theme', 'eightmedi_lite_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function eightmedi_lite_content_width() { $GLOBALS['content_width'] = apply_filters( 'eightmedi_lite_content_width', 640 ); } add_action( 'after_setup_theme', 'eightmedi_lite_content_width', 0 ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function eightmedi_lite_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'eightmedi-lite' ), 'id' => 'eightmedi-lite-sidebar-1', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Left Sidebar', 'eightmedi-lite' ), 'id' => 'eightmedi-lite-sidebar-left', 'description' => 'Add widgets to show in left sidebar', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Right Sidebar', 'eightmedi-lite' ), 'id' => 'eightmedi-lite-sidebar-right', 'description' => 'Add widgets to show in right sidebar', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Google Map Section', 'eightmedi-lite' ), 'id' => 'eightmedi-lite-google-map', 'description' => __('Add a text widget with iframe for google map','eightmedi-lite'), 'before_widget' => '', 'after_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Blocks', 'eightmedi-lite' ), 'id' => 'eightmedi-lite-widget-footer-1', 'description' => __('Add widgets for footer','eightmedi-lite'), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'eightmedi_lite_widgets_init' ); /** * Enqueue scripts and styles. */ function eightmedi_lite_scripts() { $font_args = array( 'family' => 'Open+Sans:400,600,700,300', ); wp_enqueue_style('eightmedi-lite-google-fonts', add_query_arg($font_args, "//fonts.googleapis.com/css")); wp_enqueue_style('eightmedi-lite-font-awesome', get_template_directory_uri() . '/css/font-awesome.min.css' ); wp_enqueue_style('eightmedi-lite-bxslider', get_template_directory_uri() . '/css/jquery.bxslider.css','','4.1.2' ); wp_enqueue_style( 'eightmedi-lite-fancybox', get_template_directory_uri() . '/css/fancybox.css'); wp_enqueue_style('eightmedi-lite-animate', get_template_directory_uri() . '/css/animate.css' ); wp_enqueue_style( 'eightmedi-lite-style', get_stylesheet_uri() ); wp_enqueue_style('eightmedi-lite-keyboard', get_template_directory_uri() . '/css/keyboard.css' ); wp_enqueue_style('eightmedi-lite-responsive',get_template_directory_uri().'/css/responsive.css'); if(is_rtl()){ wp_enqueue_style( 'eightmedi-lite-rtl', get_template_directory_uri() . '/css/rtl.css'); } wp_enqueue_script( 'eightmedi-lite-mousewheel', get_template_directory_uri() . '/js/jquery.mousewheel-3.0.4.pack.js', array('jquery'), '3.0.4', true ); wp_enqueue_script( 'eightmedi-lite-fancybox', get_template_directory_uri() . '/js/jquery.fancybox-1.3.4.js', array('jquery'), '1.3.4', true ); wp_enqueue_script( 'eightmedi-lite-wow', get_template_directory_uri() . '/js/wow.js', array('jquery'), '1.1.2', true ); wp_enqueue_script( 'eightmedi-lite-bxslider', get_template_directory_uri() . '/js/jquery.bxslider.min.js', array('jquery'), '4.1.2', true ); wp_enqueue_script( 'eightmedi-lite-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true ); wp_enqueue_script( 'eightmedi-lite-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_register_script('eightmedi-lite-custom-scripts', get_template_directory_uri() .'/js/custom-scripts.js'); wp_enqueue_script('eightmedi-lite-custom-scripts', get_template_directory_uri() . '/js/custom-scripts.js', array(), '20150716', true ); // // Send data to client // wp_localize_script('eightmedi-lite-custom-scripts', 'SliderData', array( // 'url' => home_url(), // )); do_action('eightmedi_lite_homepage_slider_config'); } add_action( 'wp_enqueue_scripts', 'eightmedi_lite_scripts' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.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'; /** * Load Custom Metabox file. */ require get_template_directory() . '/inc/eightmedi-metabox.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Load Custom functions file. */ require get_template_directory() . '/inc/eightmedi-functions.php'; /** * Load Custom Customizer file. */ require get_template_directory() . '/inc/eightmedi-customizer.php'; require get_template_directory() . '/inc/admin-panel/theme-info.php'; /** * Load Custom Sanitizer file. */ require get_template_directory() . '/inc/eightmedi-sanitizer.php'; /** * Load Custom Sanitizer file. */ require get_template_directory() . '/inc/eightmedi-custom-classes.php'; /** * Load plugin suggestion file. */ require get_template_directory() . '/welcome/welcome-config.php';