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); // 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' => '', ) ) ); } 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__( '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-responsive', get_template_directory_uri() . '/css/responsive.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_enqueue_script('medi-lite-custom-scripts', get_template_directory_uri() . '/js/custom-scripts.js', array(), '20150716', true ); } 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'; /** * 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';