parent()->get('Version')); wp_enqueue_style( 'author-book-publisher-style', get_stylesheet_uri(), array( $author_book_publisher_parentcss ), $author_book_publisher_theme->get('Version')); require get_theme_file_path( '/custom-option.php' ); wp_add_inline_style( 'author-book-publisher-style',$digital_books_theme_css ); require get_parent_theme_file_path( '/custom-option.php' ); wp_add_inline_style( 'digital-books-style',$digital_books_theme_css ); wp_enqueue_script( 'comment-reply', '/wp-includes/js/comment-reply.min.js', array(), false, true ); } add_action( 'wp_enqueue_scripts', 'author_book_publisher_enqueue_styles' ); require get_stylesheet_directory() . '/inc/tgm/tgm.php'; function digital_books_child_remove_parent_scripts() { remove_action( 'wp_enqueue_scripts', 'digital_books_main_scripts' ); } add_action( 'wp_loaded', 'digital_books_child_remove_parent_scripts' ); function author_book_publisher_child_overwrite_scripts() { wp_enqueue_script('digital-books-theme-js',get_stylesheet_directory_uri() . '/assets/js/theme-script.js',array('jquery'),filemtime(get_stylesheet_directory() . '/assets/js/theme-script.js'),true); wp_enqueue_script('bootstrap',get_stylesheet_directory_uri() . '/assets/js/bootstrap.min.js',array('jquery'),filemtime(get_stylesheet_directory() . '/assets/js/bootstrap.min.js'),true ); } add_action('wp_enqueue_scripts', 'author_book_publisher_child_overwrite_scripts', 20); function author_book_publisher_customize_register($wp_customize){ // Pro Version class Author_Book_Publisher_Customize_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_BOOKS_BUY_TEXT,'author-book-publisher' ) .''; echo ''; } } // Header $wp_customize->add_section('author_book_publisher_header',array( 'title' => esc_html__('Header Section','author-book-publisher'), )); $wp_customize->add_setting('author_book_publisher_topbar_text', array( 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control('author_book_publisher_topbar_text', array( 'label' => __('Topbar Text', 'author-book-publisher'), 'section' => 'author_book_publisher_header', 'priority' => 1, 'type' => 'text', )); $wp_customize->add_setting('author_book_publisher_topbarbtn1_text',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('author_book_publisher_topbarbtn1_text',array( 'label' => __('Register Button Text','author-book-publisher'), 'section'=> 'author_book_publisher_header', 'type'=> 'text', 'priority' => 11 )); $wp_customize->add_setting('author_book_publisher_topbarbtn1_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw' )); $wp_customize->add_control('author_book_publisher_topbarbtn1_url',array( 'label' => esc_html__('Register Button Url','author-book-publisher'), 'section' => 'author_book_publisher_header', 'setting' => 'author_book_publisher_topbarbtn1_url', 'type' => 'url', 'priority' => 11 )); //Slider Extra Title $wp_customize->add_setting('author_book_publisher_slider_extra_title_setting',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('author_book_publisher_slider_extra_title_setting',array( 'label' => __('Slider Sub Heading','author-book-publisher'), 'section'=> 'digital_books_top_slider', 'type'=> 'text', 'priority' => 11 )); //Slider button text $wp_customize->add_setting('digital_books_slider_button2_text',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('digital_books_slider_button2_text',array( 'label' => __('Slider 2 Button Text','author-book-publisher'), 'section'=> 'digital_books_top_slider', 'type'=> 'text', 'priority' => 11 )); $wp_customize->add_setting('digital_books_slider_button2_url',array( 'default' => '', 'sanitize_callback' => 'esc_url_raw' )); $wp_customize->add_control('digital_books_slider_button2_url',array( 'label' => esc_html__('Slider 2 Button Url','author-book-publisher'), 'section' => 'digital_books_top_slider', 'setting' => 'digital_books_slider_button2_url', 'type' => 'url', 'priority' => 11 )); // Products $wp_customize->add_section('author_book_publisher_latest_product',array( 'title' => esc_html__('Category Section','author-book-publisher'), )); $wp_customize->add_setting('author_book_publisher_activities_section_setting', array( 'default' => false, 'sanitize_callback' => 'digital_books_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'author_book_publisher_activities_section_setting',array( 'label' => __( 'Show Category Tabs', 'author-book-publisher' ), 'section' => 'author_book_publisher_latest_product', 'settings' => 'author_book_publisher_activities_section_setting', 'type' => 'checkbox', ))); $wp_customize->add_setting('author_book_publisher_services_heading',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('author_book_publisher_services_heading',array( 'label' => esc_html__('Heading','author-book-publisher'), 'section' => 'author_book_publisher_latest_product', 'setting' => 'author_book_publisher_services_heading', 'type' => 'text' )); $wp_customize->add_setting('author_book_publisher_services_category_heading',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('author_book_publisher_services_category_heading',array( 'label' => esc_html__('Category Heading','author-book-publisher'), 'section' => 'author_book_publisher_latest_product', 'setting' => 'author_book_publisher_services_category_heading', 'type' => 'text' )); for($author_book_publisher_i=1; $author_book_publisher_i<= 5; $author_book_publisher_i++) { $wp_customize->add_setting('author_book_publisher_slideproduct_tab1title'.$author_book_publisher_i,array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control('author_book_publisher_slideproduct_tab1title'.$author_book_publisher_i,array( 'label' => __('Tab Heading','author-book-publisher').$author_book_publisher_i, 'section' => 'author_book_publisher_latest_product', 'setting' => 'author_book_publisher_slideproduct_tab1title'.$author_book_publisher_i, '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); $cat_posts = array(); $m = 0; $cat_posts[]='Select'; foreach($categories as $product){ if($m==0){ $default = $product->slug; $m++; } $cat_posts[$product->slug] = $product->name; } $wp_customize->add_setting('author_book_publisher_cate_tab'.$author_book_publisher_i,array( 'default' => 'select', 'sanitize_callback' => 'digital_books_sanitize_choices', )); $wp_customize->add_control('author_book_publisher_cate_tab'.$author_book_publisher_i,array( 'type' => 'select', 'choices' => $cat_posts, 'label' => __('Select category to display products ','author-book-publisher').$author_book_publisher_i, 'section' => 'author_book_publisher_latest_product', )); } // Pro Version $wp_customize->add_setting( 'pro_version_latest_product_setting', array( 'sanitize_callback' => 'Digital_Books_sanitize_custom_control' )); $wp_customize->add_control( new Author_Book_Publisher_Customize_Pro_Version ( $wp_customize,'pro_version_latest_product_setting', array( 'section' => 'author_book_publisher_latest_product', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'author-book-publisher' ), 'description' => esc_url( DIGITAL_BOOKS_URL ), 'priority' => 100 ))); } add_action('customize_register', 'author_book_publisher_customize_register'); if ( ! function_exists( 'author_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 author_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
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
" ], [ 'title' => 'Services', 'slug' => 'services', 'content' => "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
" ], [ 'title' => 'Galley', 'slug' => 'galley', 'content' => "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
" ], [ 'title' => 'Blog', 'slug' => 'blog', ], [ 'title' => 'Pricing', 'slug' => 'pricing', 'content' => "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
" ], [ 'title' => 'Contact', 'slug' => 'contact', 'content' => "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
" ], ]; // ---------------------------------------------------- // Do not modify below this line unless needed // ---------------------------------------------------- $created_pages = []; $menu_name = 'Primary Menu'; $location = 'primary'; $menu = wp_get_nav_menu_object($menu_name); $menu_id = (!$menu) ? wp_create_nav_menu($menu_name) : $menu->term_id; $create_page_and_menu = function($item, $parent_menu_id = 0, $parent_page_id = 0) use (&$create_page_and_menu, &$created_pages, $menu_id) { $page = get_page_by_title($item['title']); if (!$page) { $page_id = wp_insert_post([ 'post_title' => $item['title'], 'post_type' => 'page', 'post_status' => 'publish', 'post_name' => $item['slug'], 'post_parent' => $parent_page_id, 'post_content' => !empty($item['content']) ? $item['content'] : '', ]); if (!empty($item['template'])) { update_post_meta($page_id, '_wp_page_template', $item['template']); } } else { $page_id = $page->ID; } $created_pages[$item['title']] = $page_id; $menu_item_id = wp_update_nav_menu_item($menu_id, 0, [ 'menu-item-title' => $item['title'], 'menu-item-object' => 'page', 'menu-item-object-id' => $page_id, 'menu-item-type' => 'post_type', 'menu-item-parent-id' => $parent_menu_id, 'menu-item-status' => 'publish' ]); if (!empty($item['children'])) { foreach ($item['children'] as $child) { $create_page_and_menu($child, $menu_item_id, $page_id); } } }; foreach ($menu_structure as $item) { $create_page_and_menu($item); } if (!empty($created_pages['Home'])) { update_option('page_on_front', $created_pages['Home']); update_option('show_on_front', 'page'); } if (!empty($created_pages['Blog'])) { update_option('page_for_posts', $created_pages['Blog']); } $locations = get_theme_mod('nav_menu_locations'); $locations[$location] = $menu_id; set_theme_mod('nav_menu_locations', $locations); set_theme_mod( 'digital_books_social_on_of_setting', true ); set_theme_mod( 'author_book_publisher_topbarbtn1_text', 'REGISTER' ); set_theme_mod( 'author_book_publisher_topbarbtn1_url', '#' ); set_theme_mod( 'digital_books_facebook_url', '#' ); set_theme_mod( 'digital_books_facebook_icon', 'fab fa-facebook-f' ); set_theme_mod( 'digital_books_twitter_url', '#' ); set_theme_mod( 'digital_books_twitter_icon', 'fab fa-twitter' ); set_theme_mod( 'digital_books_intagram_url', '#' ); set_theme_mod( 'digital_books_intagram_icon', 'fab fa-instagram' ); set_theme_mod( 'digital_books_linkedin_url', '#' ); set_theme_mod( 'digital_books_linkedin_icon', 'fab fa-linkedin-in' ); set_theme_mod( 'digital_books_pintrest_url', '#' ); set_theme_mod( 'digital_books_pintrest_icon', 'fab fa-pinterest-p' ); set_theme_mod( 'digital_books_top_header_text', 'We will start new batch from next month' ); //Slider set_theme_mod( 'digital_books_top_slider_section_setting', true ); set_theme_mod( 'author_book_publisher_slider_extra_title_setting', 'LOREM IPSUM' ); set_theme_mod( 'digital_books_slider_button1_text', 'READ MORE' ); set_theme_mod( 'digital_books_slider_button1_url', '#' ); set_theme_mod( 'digital_books_slider_button2_text', 'BUY NOW' ); set_theme_mod( 'digital_books_slider_button2_url', '#' ); for($i=1;$i<=3;$i++){ $title = 'LOREM IPSUM DOLOR AMET'; $content = 'Ut enim ad minim veniam, qused do eiusmod Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna'; // Create post object $my_post = array( 'post_title' => wp_strip_all_tags( $title ), 'post_content' => $content, 'post_status' => 'publish', 'post_type' => 'page', ); // Insert the post into the database $post_id = wp_insert_post( $my_post ); if ($post_id) { // Set the theme mod for the slider page set_theme_mod('digital_books_top_slider_page' . $i, $post_id); $image_url = get_stylesheet_directory_uri().'/assets/img/slider.png'; $image_id = media_sideload_image($image_url, $post_id, null, 'id'); if (!is_wp_error($image_id)) { // Set the downloaded image as the post's featured image set_post_thumbnail($post_id, $image_id); } } } // ================= PRODUCT SECTION ================= // Section settings set_theme_mod('author_book_publisher_activities_section_setting', true); set_theme_mod('author_book_publisher_services_heading', 'LATEST RELEASES'); set_theme_mod('author_book_publisher_services_category_heading', 'Categories'); // Product categories (tabs) $author_book_publisher_title_custom = array( 'FANTASY', 'MYSTERY', 'SCIENCE FICTION', 'THRILLER', 'ROMANCE' ); // Set tab titles for ($i = 1; $i <= 5; $i++) { set_theme_mod( 'author_book_publisher_slideproduct_tab1title' . $i, $author_book_publisher_title_custom[$i - 1] ); } // Product titles $product_title = array( 'Lorem Ipsum', 'Lorem Ipsum', 'Lorem Ipsum', 'Lorem Ipsum' ); // ================= CHECK WOOCOMMERCE ================= if (class_exists('WooCommerce')) { for ($j = 1; $j <= 4; $j++) { // Assign category $category_name = $author_book_publisher_title_custom[$j - 1]; $category = term_exists($category_name, 'product_cat'); if (!$category) { $category = wp_insert_term($category_name, 'product_cat'); } // ================= CREATE PRODUCTS ================= for ($i = 1; $i <= 3; $i++) { $my_post = array( 'post_title' => wp_strip_all_tags($product_title[$i - 1]), 'post_content' => 'Lorem Ipsum has been the industry standard dummy text ever since the 1500s.', 'post_excerpt' => 'Lorem Ipsum dummy text since 1500s.', 'post_status' => 'publish', 'post_type' => 'product', ); $post_id = wp_insert_post($my_post); if (is_wp_error($post_id)) { continue; } // Assign category wp_set_object_terms($post_id, $category_name, 'product_cat'); // ================= PRODUCT META ================= update_post_meta($post_id, '_regular_price', '120'); update_post_meta($post_id, '_sale_price', '80'); update_post_meta($post_id, '_price', '80'); update_post_meta($post_id, 'total_sales', '120'); update_post_meta($post_id, '_manage_stock', 'yes'); update_post_meta($post_id, '_stock', '100'); // ================= FEATURED IMAGE ================= $image_path = get_stylesheet_directory() . '/assets/img/book' . $i . '.png'; if (file_exists($image_path)) { $upload_dir = wp_upload_dir(); $image_name = 'book' . $i . '.png'; $filename = wp_unique_filename($upload_dir['path'], $image_name); $file = $upload_dir['path'] . '/' . $filename; // Copy theme image to uploads copy($image_path, $file); $wp_filetype = wp_check_filetype($filename, null); $attachment = array( 'post_mime_type' => $wp_filetype['type'], 'post_title' => sanitize_file_name($filename), 'post_status' => 'inherit', ); $attach_id = wp_insert_attachment($attachment, $file, $post_id); require_once ABSPATH . 'wp-admin/includes/image.php'; $attach_data = wp_generate_attachment_metadata($attach_id, $file); wp_update_attachment_metadata($attach_id, $attach_data); set_post_thumbnail($post_id, $attach_id); } } // ================= SAVE CATEGORY SLUG FOR TABS ================= $category_obj = get_term_by('term_id', $category['term_id'], 'product_cat'); if ($category_obj) { set_theme_mod('author_book_publisher_cate_tab' . $j, $category_obj->slug); } } } } // Enqueue necessary scripts add_action('admin_enqueue_scripts', 'author_book_publisher_demo_importer_enqueue_scripts'); function author_book_publisher_demo_importer_enqueue_scripts() { wp_enqueue_script( 'demo-theme-importer', get_template_directory_uri() . '/assets/js/theme-importer.js', // Path to your JS file array('jquery'), null, true ); wp_enqueue_style('demo-importer-style', get_template_directory_uri() . '/assets/css/importer.css', array(), ''); // Localize script to pass AJAX URL to JS wp_localize_script( 'demo-theme-importer', 'demoImporter', array( 'ajax_url' => admin_url('admin-ajax.php'), 'nonce' => wp_create_nonce('theme_importer_nonce') ) ); }