parent()->get('Version')); wp_enqueue_style( 'boutique-garment-store-style', get_stylesheet_uri(), array( $parentcss ), $theme->get('Version')); require get_theme_file_path( '/custom-option.php' ); wp_add_inline_style( 'boutique-garment-store-style',$digital_storefront_theme_css ); require get_parent_theme_file_path( '/custom-option.php' ); wp_add_inline_style( 'digital-storefront-style',$digital_storefront_theme_css ); wp_enqueue_script( 'comment-reply', '/wp-includes/js/comment-reply.min.js', array(), false, true ); wp_enqueue_style( 'flatly-css', esc_url(get_template_directory_uri()) . '/assets/css/flatly.css'); } add_action( 'wp_enqueue_scripts', 'boutique_garment_store_enqueue_styles' ); function boutique_garment_store_admin_scripts() { // demo CSS wp_enqueue_style( 'boutique-garment-store-demo-css', get_theme_file_uri( 'assets/css/demo.css' ) ); } add_action( 'admin_enqueue_scripts', 'boutique_garment_store_admin_scripts' ); function boutique_garment_store_customize_register($wp_customize){ // Pro Version class Boutique_Garment_Store_Pro_Version extends WP_Customize_Control { public $type = 'pro_options'; public function render_content() { echo 'For More '. esc_html( $this->label ) .'?'; echo ''; echo ''; echo ' '. esc_html( DIGITAL_STOREFRONT_BUY_TEXT,'boutique-garment-store' ) .''; echo ''; } } // Custom Controls function Boutique_Garment_Store_sanitize_custom_control( $input ) { return $input; } //Product $wp_customize->add_section('boutique_garment_store_new_product',array( 'title' => esc_html__('New Arrival Product','boutique-garment-store'), 'description' => esc_html__('Here you have to select product category which will display perticular new arrival product in the home page.','boutique-garment-store') )); $wp_customize->add_setting('boutique_garment_store_new_product_title',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('boutique_garment_store_new_product_title',array( 'label' => esc_html__('Title','boutique-garment-store'), 'section' => 'boutique_garment_store_new_product', 'setting' => 'boutique_garment_store_new_product_title', 'type' => 'text' )); $wp_customize->add_setting('boutique_garment_store_new_product_text',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('boutique_garment_store_new_product_text',array( 'label' => esc_html__('Text','boutique-garment-store'), 'section' => 'boutique_garment_store_new_product', 'setting' => 'boutique_garment_store_new_product_text', 'type' => 'text' )); $wp_customize->add_setting('boutique_garment_store_new_product_number',array( 'default' => '', 'sanitize_callback' => 'absint' )); $wp_customize->add_control('boutique_garment_store_new_product_number',array( 'label' => esc_html__('No of Product','boutique-garment-store'), 'section' => 'boutique_garment_store_new_product', 'setting' => 'boutique_garment_store_new_product_number', 'type' => 'number' )); $args = array( 'type' => 'product', 'child_of' => 0, 'parent' => '', 'orderby' => 'term_group', 'order' => 'ASC', 'hide_empty' => false, 'hierarchical' => 1, 'number' => '', 'taxonomy' => 'product_cat', 'pad_counts' => false ); $categories = get_categories( $args ); $cats = array(); $i = 0; foreach($categories as $category){ if($i==0){ $default = $category->slug; $i++; } $cats[$category->slug] = $category->name; } $wp_customize->add_setting('boutique_garment_store_new_product_category',array( 'sanitize_callback' => 'boutique_garment_store_sanitize_select', )); $wp_customize->add_control('boutique_garment_store_new_product_category',array( 'type' => 'select', 'choices' => $cats, 'label' => __('Select Product Category','boutique-garment-store'), 'section' => 'boutique_garment_store_new_product', )); // Pro Version $wp_customize->add_setting( 'pro_version_product_pro_option', array( 'sanitize_callback' => 'Boutique_Garment_Store_sanitize_custom_control' )); $wp_customize->add_control( new Boutique_Garment_Store_Pro_Version ( $wp_customize,'pro_version_product_pro_option', array( 'section' => 'boutique_garment_store_new_product', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'boutique-garment-store' ), 'description' => esc_url( DIGITAL_STOREFRONT_URL ), 'priority' => 100 ))); } add_action('customize_register', 'boutique_garment_store_customize_register'); if ( ! function_exists( 'boutique_garment_store_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function boutique_garment_store_setup() { add_theme_support( 'responsive-embeds' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded