tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for custom logo. */ add_theme_support( 'custom-logo', array( 'width' => 190, 'height' => 60, 'flex-width' => true, 'flex-height' => true, 'header-text' => array( '.site-title', '.site-description' ), ) ); /* * 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('sparklestore-slider', 1350, 520, true); add_image_size('sparklestore-home-blog', 350, 230, true); add_image_size('sparklestore-cat-collection-image', 285, 370, true); add_image_size('sparklestore-cat-image', 300, 470, true); add_image_size('sparklestore-blogs', 760, 385, true); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'sparkleprimary' => esc_html__( 'Primary', 'sparklestore' ), 'sparklecategory' => esc_html__( 'Category', 'sparklestore' ), 'sparkletopmenu' => esc_html__( 'Top Menu', 'sparklestore' ), 'sparklefootermenu' => esc_html__( 'Footer Menu', 'sparklestore' ), ) ); /* * Editor style. */ add_editor_style( 'css/editor-style.css' ); /* * 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( 'sparklestore_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Indicate widget sidebars can use selective refresh in the Customizer. add_theme_support( 'customize-selective-refresh-widgets' ); } endif; add_action( 'after_setup_theme', 'sparklestore_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 sparklestore_content_width() { $GLOBALS['content_width'] = apply_filters( 'sparklestore_content_width', 640 ); } add_action( 'after_setup_theme', 'sparklestore_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function sparklestore_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Right Sidebar Widget Area', 'sparklestore' ), 'id' => 'sparklesidebarone', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar( array( 'name' => esc_html__( 'Left Sidebar Widget Area', 'sparklestore' ), 'id' => 'sparklesidebartwo', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); if ( is_customize_preview() ) { $sparklestore_description = sprintf( esc_html__( 'Displays widgets on home page main content area.%1$s Note : Please go to %2$s "Static Front Page"%3$s setting, Select "A static page" then "Front page" and "Posts page" to show added widgets', 'sparklestore' ), '
','','' ); } else{ $sparklestore_description = esc_html__( 'Displays widgets on Front/Home page. Note : First Create Page and Select "Page Attributes Template"( SpiderMag - FrontPage ) then Please go to Setting => Reading, Select "A static page" then "Front page" and add widgets to show on Home Page', 'sparklestore' ); } register_sidebar( array( 'name' => esc_html__( 'Sparkle: Main Widget Area', 'sparklestore' ), 'id' => 'sparklemainwidgetarea', 'description' => $sparklestore_description, 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area One', 'sparklestore' ), 'id' => 'sparklefooterareaone', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area Two', 'sparklestore' ), 'id' => 'sparklefooterareatwo', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area Three', 'sparklestore' ), 'id' => 'sparklefooterareathree', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area Four', 'sparklestore' ), 'id' => 'sparklefooterareafour', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); } add_action( 'widgets_init', 'sparklestore_widgets_init' ); /** * Enqueue scripts and styles. */ function sparklestore_scripts() { $sparklestore_theme = wp_get_theme(); $theme_version = $sparklestore_theme->get( 'Version' ); /* Sparklestore Google Font */ $sparklestore_font_args = array( 'family' => 'Open+Sans:700,600,800,400|Poppins:400,300,500,600,700', ); wp_enqueue_style('sparklestore-google-fonts', add_query_arg( $sparklestore_font_args, "//fonts.googleapis.com/css" ) ); /* Sparkle Store Font Awesome */ wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/library/font-awesome/css/font-awesome.min.css', esc_attr( $theme_version ) ); /* flexslider Slider */ wp_enqueue_style( 'flexslider', get_template_directory_uri() . '/assets/library/flexslider/css/flexslider.css', esc_attr( $theme_version ) ); /* Sparkle Store Lightslider CSS */ wp_enqueue_style( 'lightslider', get_template_directory_uri() . '/assets/library/lightslider/css/lightslider.css' ); /* Sparkle Store Main Style */ wp_enqueue_style( 'sparklestore-style', get_stylesheet_uri() ); if ( has_header_image() ) { $custom_css = '.site-header{ background-image: url("' . esc_url( get_header_image() ) . '"); background-repeat: no-repeat; background-position: center center; background-size: cover; }'; wp_add_inline_style( 'sparklestore-style', $custom_css ); } /* Sparkle Store 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' ); /* Sparkle Store 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' ); /* flexslider Slider Js */ wp_enqueue_script('flexslider', get_template_directory_uri() . '/assets/library/flexslider/js/jquery.flexslider-min.js', array('jquery'), esc_attr( $theme_version ), true); /* Sparkle Store Lightslider */ wp_enqueue_script('lightslider', get_template_directory_uri() . '/assets/library/lightslider/js/lightslider.js', array('jquery'), esc_attr( $theme_version ), true); /* Sparkle Store Sidebar Widget Ticker */ wp_enqueue_script('theia-sticky-sidebar', get_template_directory_uri() . '/assets/library/theia-sticky-sidebar/js/theia-sticky-sidebar.min.js', array('jquery'), esc_attr( $theme_version ), true); /* Sparkle Store Theme Custom js */ wp_enqueue_script('sparklestore-common', get_template_directory_uri() . '/assets/js/common.js', array('jquery'), esc_attr( $theme_version ), true); wp_localize_script( 'sparklestore-common', 'sparklestore_tabs_ajax_action', array( 'ajaxurl' => admin_url( 'admin-ajax.php') ) ); /* Sparkle Store Jquery Section Start */ wp_enqueue_script( 'sparklestore-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array(), esc_attr( $theme_version ), true ); wp_enqueue_script( 'sparklestore-navigation', get_template_directory_uri() . '/assets/js/navigation.js', array(), esc_attr( $theme_version ), true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'sparklestore_scripts' ); /** * Admin Enqueue scripts and styles. */ if ( ! function_exists( 'sparklestore_admin_scripts' ) ) { function sparklestore_admin_scripts($hook) { //if( 'widgets.php' != $hook ) //return; if (function_exists('wp_enqueue_media')){ wp_enqueue_media(); } wp_enqueue_script('sparklestore-media-uploader', get_template_directory_uri() . '/assets/js/sparklestore-admin.js', array( 'jquery', 'customize-controls' ) ); wp_localize_script('sparklestore-media-uploader', 'sparklestore_remove', array( 'upload' => esc_html__('Upload', 'sparklestore'), 'remove' => esc_html__('Remove', 'sparklestore') )); wp_enqueue_style( 'sparklestore-style-admin', get_template_directory_uri() . '/assets/css/sparklestore-admin.css'); } } add_action('admin_enqueue_scripts', 'sparklestore_admin_scripts'); /** * Require init. */ require trailingslashit( get_template_directory() ).'sparklethemes/init.php'; if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title', 'container_inclusive' => false, 'render_callback' => 'sparklestore_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'container_inclusive' => false, 'render_callback' => 'sparklestore_customize_partial_blogdescription', ) ); $wp_customize->selective_refresh->add_partial( 'sparklestore_email_icon', array( 'selector' => '.quickinfowrap', 'container_inclusive' => false, ) ); $wp_customize->selective_refresh->add_partial( 'sparklestore_social_facebook', array( 'selector' => '.social', 'container_inclusive' => false, ) ); $wp_customize->selective_refresh->add_partial( 'paymentlogo_image_one', array( 'selector' => '.payment-accept', 'container_inclusive' => false, ) ); $wp_customize->selective_refresh->add_partial( 'sparklestore_footer_copyright', array( 'selector' => '.coppyright', 'container_inclusive' => false, ) ); } function sparklestore_customize_partial_blogname() { bloginfo( 'name' ); } function sparklestore_customize_partial_blogdescription() { bloginfo( 'description' ); }