esc_html__( 'Primary Menu', 'hashone' ), ) ); 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( 'hashone_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); add_editor_style( array( 'css/editor-style.css', hashone_fonts_url() ) ); } endif; // hashone_setup add_action( 'after_setup_theme', 'hashone_setup' ); function hashone_content_width() { $GLOBALS['content_width'] = apply_filters( 'hashone_content_width', 640 ); } add_action( 'after_setup_theme', 'hashone_content_width', 0 ); /** * Enables the Excerpt meta box in Page edit screen. */ function hashone_add_excerpt_support_for_pages() { add_post_type_support( 'page', 'excerpt' ); } add_action( 'init', 'hashone_add_excerpt_support_for_pages' ); // Register widget area. function hashone_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'hashone' ), 'id' => 'hashone-sidebar', 'description' => __( 'Add widgets here to appear in your sidebar.', 'hashone' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

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

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'hashone_widgets_init' ); if ( ! function_exists( 'hashone_fonts_url' ) ) : /** * Register Google fonts for Hashone. * * @since Hashone 1.0 * * @return string Google fonts URL for the theme. */ function hashone_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', 'hashone' ) ) { $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', 'hashone' ) ) { $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)', 'hashone' ); 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 hashone_scripts() { wp_enqueue_script( 'hashone-bx-slider', get_template_directory_uri() . '/js/jquery.bxslider.js', array('jquery'), '4.1.2', true ); wp_enqueue_script( 'hashone-actual', get_template_directory_uri() . '/js/jquery.actual.js', array('jquery'), '1.0.16', true ); wp_enqueue_script( 'hashone-owl-carousel', get_template_directory_uri() . '/js/owl.carousel.js', array('jquery'), '1.3.3', true ); wp_enqueue_script( 'hashone-isotope', get_template_directory_uri() . '/js/isotope.pkgd.js', array('jquery'), '20150903', true ); wp_enqueue_script( 'hashone-images-loaded', get_template_directory_uri() . '/js/imagesloaded.pkgd.js', array('jquery'), '20150903', true ); wp_enqueue_script( 'hashone-nivo-lightbox', get_template_directory_uri() . '/js/nivo-lightbox.js', array('jquery'), '20150903', true ); wp_enqueue_script( 'hashone-custom', get_template_directory_uri() . '/js/hashone-custom.js', array('jquery'), '20150903', true ); wp_enqueue_style( 'hashone-style', get_stylesheet_uri() ); wp_enqueue_style( 'hashone-fonts', hashone_fonts_url(), array(), null ); wp_enqueue_style( 'hashone-bx-slider', get_template_directory_uri() . '/css/jquery.bxslider.css', array('hashone-style'), '4.1.2' ); wp_enqueue_style( 'hashone-animate', get_template_directory_uri() . '/css/animate.css', array('hashone-style'), '1.0' ); wp_enqueue_style( 'hashone-fontawesome', get_template_directory_uri() . '/css/font-awesome.css', array('hashone-style'), '4.4.0' ); wp_enqueue_style( 'hashone-owl-carousel', get_template_directory_uri() . '/css/owl.carousel.css', array('hashone-style'), '1.3.3' ); wp_enqueue_style( 'hashone-owl-theme', get_template_directory_uri() . '/css/owl.theme.css', array('hashone-style'), '1.3.3' ); wp_enqueue_style( 'hashone-nivo-lightbox', get_template_directory_uri() . '/css/nivo-lightbox.css', array('hashone-style'), '1.3.3' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'hashone_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/hashone-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load FontAwesome Array */ require get_template_directory() . '/inc/fontawesome-list.php';