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( 'total-portfolio-thumb', 550, 500, true ); add_image_size( 'total-team-thumb', 400, 400, true ); add_image_size( 'total-thumb', 100, 100, true ); add_image_size( 'total-blog-header', 700, 340, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'total' ), ) ); /* * 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', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'total_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( array( 'css/editor-style.css', total_fonts_url() ) ); } endif; // total_setup add_action( 'after_setup_theme', 'total_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 total_content_width() { $GLOBALS['content_width'] = apply_filters( 'total_content_width', 640 ); } add_action( 'after_setup_theme', 'total_content_width', 0 ); /** * Enables the Excerpt meta box in Page edit screen. */ function total_add_excerpt_support_for_pages() { add_post_type_support( 'page', 'excerpt' ); } add_action( 'init', 'total_add_excerpt_support_for_pages' ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function total_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'total' ), 'id' => 'total-sidebar', 'description' => __( 'Add widgets here to appear in your sidebar.', 'total' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Contact Form', 'total' ), 'id' => 'total-contact-form', 'description' => __( 'Add widgets here to appear in the Contact Section of the Home Page.', 'total' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'About Us', 'total' ), 'id' => 'total-about-us', 'description' => __( 'Add widgets here to appear in the About Section of the Home Page.', 'total' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer One', 'total' ), 'id' => 'total-footer1', 'description' => __( 'Add widgets here to appear in your Footer.', 'total' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Two', 'total' ), 'id' => 'total-footer2', 'description' => __( 'Add widgets here to appear in your Footer.', 'total' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Three', 'total' ), 'id' => 'total-footer3', 'description' => __( 'Add widgets here to appear in your Footer.', 'total' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Four', 'total' ), 'id' => 'total-footer4', 'description' => __( 'Add widgets here to appear in your Footer.', 'total' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'total_widgets_init' ); if ( ! function_exists( 'total_fonts_url' ) ) : /** * Register Google fonts for Total. * * @since Total 1.0 * * @return string Google fonts URL for the theme. */ function total_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* * Translators: If there are characters in your language that are not supported * by Open Sans, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Open Sans font: on or off', 'total' ) ) { $fonts[] = 'Open+Sans:400,300,600,700'; } /* * Translators: If there are characters in your language that are not supported * by Inconsolata, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Roboto Condensed font: on or off', 'total' ) ) { $fonts[] = 'Roboto+Condensed:300italic,400italic,700italic,400,300,700'; } /* * Translators: To add an additional character subset specific to your language, * translate this to 'greek', 'cyrillic', 'devanagari' or 'vietnamese'. Do not translate into your own language. */ $subset = _x( 'no-subset', 'Add new subset (greek, cyrillic, devanagari, vietnamese)', 'total' ); if ( 'cyrillic' == $subset ) { $subsets .= ',cyrillic,cyrillic-ext'; } elseif ( 'greek' == $subset ) { $subsets .= ',greek,greek-ext'; } elseif ( 'devanagari' == $subset ) { $subsets .= ',devanagari'; } elseif ( 'vietnamese' == $subset ) { $subsets .= ',vietnamese'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => implode( '|', $fonts ) , 'subset' => $subsets , ), '//fonts.googleapis.com/css' ); } return $fonts_url; } endif; /** * Enqueue scripts and styles. */ function total_scripts() { wp_enqueue_script( 'jquery-bxslider', get_template_directory_uri() . '/js/jquery.bxslider.js', array('jquery'), '4.1.2', true ); wp_enqueue_script( 'owl-carousel', get_template_directory_uri() . '/js/owl.carousel.js', array('jquery'), '1.3.3', true ); wp_enqueue_script( 'isotope-pkgd', get_template_directory_uri() . '/js/isotope.pkgd.js', array('jquery'), '20150903', true ); wp_enqueue_script( 'images-loaded-pkgd', get_template_directory_uri() . '/js/imagesloaded.pkgd.js', array('jquery'), '20150903', true ); wp_enqueue_script( 'nivo-lightbox', get_template_directory_uri() . '/js/nivo-lightbox.js', array('jquery'), '20150903', true ); wp_enqueue_script( 'total-custom', get_template_directory_uri() . '/js/total-custom.js', array('jquery'), '20150903', true ); wp_enqueue_style( 'total-style', get_stylesheet_uri() ); wp_enqueue_style( 'total-fonts', total_fonts_url(), array(), null ); wp_enqueue_style( 'bxslider', get_template_directory_uri() . '/css/jquery.bxslider.css', array('total-style'), '4.1.2' ); wp_enqueue_style( 'animate', get_template_directory_uri() . '/css/animate.css', array('total-style'), '1.0' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array('total-style'), '4.4.0' ); wp_enqueue_style( 'owl-carousel', get_template_directory_uri() . '/css/owl.carousel.css', array('total-style'), '1.3.3' ); wp_enqueue_style( 'owl-theme', get_template_directory_uri() . '/css/owl.theme.css', array('total-style'), '1.3.3' ); wp_enqueue_style( 'nivo-lightbox', get_template_directory_uri() . '/css/nivo-lightbox.css', array('total-style'), '1.3.3' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'total_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/total-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load FontAwesome Array */ require get_template_directory() . '/inc/fontawesome-list.php';