tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for custom logo. */ add_image_size( 'buzzstore-logo', 190, 60 ); add_theme_support( 'custom-logo', array( 'size' => 'buzzstore-logo' ) ); /* * 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' ); add_image_size('buzzstore-news-image', 377, 300, true); // Home Blog add_image_size('buzzstore-news-details-image', 850, 385, true); // Home Blog add_image_size('buzzstore-cat-image', 275, 370, true); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'buzzstore-topmenu' => esc_html__( 'Top Menu', 'buzzstore' ), 'buzzstoreprimary' => esc_html__( 'Primary', 'buzzstore' ), ) ); /* * 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 https://developer.wordpress.org/themes/functionality/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( 'buzzstore_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // buzzstore_setup add_action( 'after_setup_theme', 'buzzstore_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 */ if ( ! function_exists( 'buzzstore_widgets_init' ) ) { function buzzstore_content_width() { $GLOBALS['content_width'] = apply_filters( 'buzzstore_content_width', 640 ); } add_action( 'after_setup_theme', 'buzzstore_content_width', 0 ); } /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ if ( ! function_exists( 'buzzstore_widgets_init' ) ) { function buzzstore_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Right Sidebar Widget Area', 'buzzstore' ), 'id' => 'buzzsidebarone', 'description' => esc_html__( 'Add widgets here.', 'buzzstore' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Left Sidebar Widget Area', 'buzzstore' ), 'id' => 'buzzsidebartwo', 'description' => esc_html__( 'Add widgets here.', 'buzzstore' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Buzz : Home Main Widget Area', 'buzzstore' ), 'id' => 'buzzstorehomearea', 'description' => esc_html__( 'Add widgets here.', 'buzzstore' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area One', 'buzzstore' ), 'id' => 'buzzstorefooterone', 'description' => esc_html__( 'Add widgets here.', 'buzzstore' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area Two', 'buzzstore' ), 'id' => 'buzzstorefootertwo', 'description' => esc_html__( 'Add widgets here.', 'buzzstore' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area Three', 'buzzstore' ), 'id' => 'buzzstorefooterthree', 'description' => esc_html__( 'Add widgets here.', 'buzzstore' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area Four', 'buzzstore' ), 'id' => 'buzzstorefooterfour', 'description' => esc_html__( 'Add widgets here.', 'buzzstore' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'buzzstore_widgets_init' ); } /***************************************************************** ** Enqueue scripts and styles. ** ******************************************************************/ function buzzstore_scripts() { $buzzstore_theme = wp_get_theme(); $theme_version = $buzzstore_theme->get( 'Version' ); /* BuzzStore Google Font */ $buzzstore_font_args = array( 'family' => 'Open+Sans:700,600,800,400|Poppins:400,300,500,600,700|Montserrat:400,500,600,700,800', ); wp_enqueue_style('google-fonts', add_query_arg( $buzzstore_font_args, "//fonts.googleapis.com/css" ) ); /* BuzzStore Font Awesome */ wp_enqueue_style( 'fontawesome', get_template_directory_uri() . '/assets/library/font-awesome/css/font-awesome.min.css', esc_attr( $theme_version ) ); /* BuzzStore Simple Line Icons */ wp_enqueue_style( 'simple-line-icons', get_template_directory_uri() . '/assets/library/simple-line-icons/css/simple-line-icons.css', esc_attr( $theme_version ) ); /*BuzzStore Owl Carousel CSS*/ wp_enqueue_style( 'owl-carousel', get_template_directory_uri() . '/assets/library/owlcarousel/css/owl.carousel.css', esc_attr( $theme_version ) ); wp_enqueue_style( 'owl-theme', get_template_directory_uri() . '/assets/library/owlcarousel/css/owl.theme.css', esc_attr( $theme_version ) ); /*BuzzStore Bxslider CSS*/ wp_enqueue_style( 'jquery-bxslider', get_template_directory_uri() . '/assets/library/bxslider/css/jquery.bxslider.min.css', esc_attr( $theme_version ) ); /* BuzzStore Main Style */ wp_enqueue_style( 'buzzstore-style', get_stylesheet_uri() ); /*BuzzStore Animation */ wp_enqueue_style( 'animate', get_template_directory_uri() . '/assets/library/animate/animate.css', esc_attr( $theme_version ) ); /*BuzzStore Owl Carousel JS*/ wp_enqueue_script('owl-carousel-min', get_template_directory_uri() . '/assets/library/owlcarousel/js/owl.carousel.min.js', array('jquery'), esc_attr( $theme_version ), true); /*BuzzStore Bxslider*/ wp_enqueue_script('jquery-bxslider', get_template_directory_uri() . '/assets/library/bxslider/js/jquery.bxslider.min.js', array('jquery'), '4.2.5', 1); /* BuzzStore html5 */ wp_enqueue_script('html5', get_template_directory_uri() . '/assets/library/html5shiv/html5shiv.min.js', array('jquery'), esc_attr( $theme_version ), false); wp_script_add_data( 'html5', 'conditional', 'lt IE 9' ); /* BuzzStore Respond */ wp_enqueue_script('respond', get_template_directory_uri() . '/assets/library/respond/respond.min.js', array('jquery'), esc_attr( $theme_version ), false); wp_script_add_data( 'respond', 'conditional', 'lt IE 9' ); /*BuzzStore Wow */ wp_enqueue_script('wow', get_template_directory_uri() . '/assets/library/wow/js/wow.min.js', array('jquery'), esc_attr( $theme_version ), true); /* BuzzStore Jquery Section Start */ wp_enqueue_script( 'buzzstore-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array(), esc_attr( $theme_version ), true ); wp_enqueue_script( 'buzzstore-navigation', get_template_directory_uri() . '/assets/js/navigation.js', array(), esc_attr( $theme_version ), true ); /* BuzzStore Isotope */ wp_enqueue_script( 'isotope-pkgd', get_template_directory_uri() . '/assets/library/isotope/js/isotope.pkgd.min.js', array(), esc_attr( $theme_version ), true ); /* BuzzStore Imagesloaded */ wp_enqueue_script( 'imagesloaded', get_template_directory_uri() . '/assets/library/imagesloaded/js/imagesloaded.pkgd.min.js', array(), esc_attr( $theme_version ), true ); /* BuzzStore SmoothScroll */ wp_enqueue_script( 'SmoothScroll', get_template_directory_uri() . '/assets/library/smoothscroll/js/SmoothScroll.min.js', array(), esc_attr( $theme_version ), true ); /* BuzzStore Theme Custom js */ wp_enqueue_script('buzzstore-custom', get_template_directory_uri() . '/assets/js/buzzstore-custom.js', array('jquery'), esc_attr( $theme_version ), 'ture'); //wp_localize_script( 'buzzstore-custom', 'buzzstore_tabs_ajax_action', array( 'ajaxurl' => admin_url( 'admin-ajax.php') ) ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'buzzstore_scripts' ); /** * Admin Enqueue scripts and styles. */ if ( ! function_exists( 'buzzstore_media_scripts' ) ) { function buzzstore_media_scripts() { if (function_exists('wp_enqueue_media')){ wp_enqueue_media(); } wp_register_script('buzzstore-media-uploader', get_template_directory_uri() . '/assets/js/buzzstore-admin.js', array('jquery') ); wp_enqueue_script('buzzstore-media-uploader'); wp_localize_script('buzzstore-media-uploader', 'buzzstore_l10n', array( 'upload' => __('Upload', 'buzzstore'), 'remove' => __('Remove', 'buzzstore') )); wp_enqueue_style( 'buzzstore-admin-style', get_template_directory_uri() . '/assets/css/buzzstore-admin.css'); } } add_action('admin_enqueue_scripts', 'buzzstore_media_scripts'); /** * Require init. */ require trailingslashit( get_template_directory() ).'sparklethemes/init.php';