parent()->get('Version')); wp_enqueue_style( 'book-publisher-style', get_stylesheet_uri(), array( $parentcss ), $theme->get('Version')); wp_enqueue_script( 'comment-reply', '/wp-includes/js/comment-reply.min.js', array(), false, true ); } add_action( 'wp_enqueue_scripts', 'book_publisher_enqueue_styles' ); function book_publisher_admin_scripts() { // demo CSS wp_enqueue_style( 'book-publisher-demo-css', get_theme_file_uri( 'assets/css/demo.css' ) ); } add_action( 'admin_enqueue_scripts', 'book_publisher_admin_scripts' ); function book_publisher_customize_register($wp_customize){ $wp_customize->add_setting('book_publisher_topbar_text', array( 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control('book_publisher_topbar_text', array( 'label' => __('Topbar Text', 'book-publisher'), 'section' => 'digital_books_social_link', 'priority' => 1, 'type' => 'text', )); //Latest Product $wp_customize->add_section('book_publisher_latest_product',array( 'title' => esc_html__('Latest Product','book-publisher'), 'description' => esc_html__('Here you have to select product category which will display perticular latest product in the home page.','book-publisher'), 'priority' => 5, )); $wp_customize->add_setting('book_publisher_latest_product_title', array( 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control('book_publisher_latest_product_title', array( 'label' => __('Section Title', 'book-publisher'), 'section' => 'book_publisher_latest_product', 'priority' => 1, 'type' => 'text', )); $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('book_publisher_latest_product',array( 'sanitize_callback' => 'digital_books_sanitize_select', )); $wp_customize->add_control('book_publisher_latest_product',array( 'type' => 'select', 'choices' => $cats, 'label' => __('Select Product Category','book-publisher'), 'section' => 'book_publisher_latest_product', )); } add_action('customize_register', 'book_publisher_customize_register'); if ( ! function_exists( 'book_publisher_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 book_publisher_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