Loading... '; // Define the plugins you want to install and activate $plugins = array( array( 'slug' => 'woocommerce', 'file' => 'woocommerce/woocommerce.php', 'url' => 'https://downloads.wordpress.org/plugin/woocommerce.latest-stable.zip' ), array( 'slug' => 'yith-woocommerce-wishlist', 'file' => 'yith-woocommerce-wishlist/init.php', 'url' => 'https://downloads.wordpress.org/plugin/yith-woocommerce-wishlist.latest-stable.zip' ) ); // Include required files for plugin installation if (!function_exists('plugins_api')) { include_once(ABSPATH . 'wp-admin/includes/plugin-install.php'); } if (!function_exists('activate_plugin')) { include_once(ABSPATH . 'wp-admin/includes/plugin.php'); } include_once(ABSPATH . 'wp-admin/includes/file.php'); include_once(ABSPATH . 'wp-admin/includes/misc.php'); include_once(ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'); // Loop through each plugin foreach ($plugins as $plugin) { $plugin_file = WP_PLUGIN_DIR . '/' . $plugin['file']; // Check if the plugin is installed if (!file_exists($plugin_file)) { // If the plugin is not installed, download and install it $upgrader = new Plugin_Upgrader(); $result = $upgrader->install($plugin['url']); // Check for installation errors if (is_wp_error($result)) { error_log('Plugin installation failed: ' . $plugin['slug'] . ' - ' . $result->get_error_message()); continue; } } // If the plugin folder exists but the plugin is not active, activate it if (file_exists($plugin_file) && !is_plugin_active($plugin['file'])) { $result = activate_plugin($plugin['file']); // Check for activation errors if (is_wp_error($result)) { error_log('Plugin activation failed: ' . $plugin['slug'] . ' - ' . $result->get_error_message()); } } } // Hide the preloader after the process is complete echo ''; // Add filter to skip WooCommerce setup wizard after activation add_filter('woocommerce_prevent_automatic_wizard_redirect', '__return_true'); } // Call the import function author_writer_import_demo_content(); // ------- Create Nav Menu -------- $author_writer_menuname = 'Main Menus'; $author_writer_bpmenulocation = 'primary-menu'; $author_writer_menu_exists = wp_get_nav_menu_object($author_writer_menuname); if (!$author_writer_menu_exists) { $author_writer_menu_id = wp_create_nav_menu($author_writer_menuname); // Create Home Page $author_writer_home_title = 'Home'; $author_writer_home = array( 'post_type' => 'page', 'post_title' => $author_writer_home_title, 'post_content' => '', 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'home' ); $author_writer_home_id = wp_insert_post($author_writer_home); // Assign Home Page Template add_post_meta($author_writer_home_id, '_wp_page_template', 'page-template/front-page.php'); // Update options to set Home Page as the front page update_option('page_on_front', $author_writer_home_id); update_option('show_on_front', 'page'); // Add Home Page to Menu wp_update_nav_menu_item($author_writer_menu_id, 0, array( 'menu-item-title' => __('Home', 'bookstore-library'), 'menu-item-classes' => 'home', 'menu-item-url' => home_url('/'), 'menu-item-status' => 'publish', 'menu-item-object-id' => $author_writer_home_id, 'menu-item-object' => 'page', 'menu-item-type' => 'post_type' )); // Create About Us Page with Dummy Content $author_writer_about_title = 'About Us'; $author_writer_about_content = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam...
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500, 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 1960 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.
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 dont look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isnt 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.'; $author_writer_about = array( 'post_type' => 'page', 'post_title' => $author_writer_about_title, 'post_content' => $author_writer_about_content, 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'about-us' ); $author_writer_about_id = wp_insert_post($author_writer_about); // Add About Us Page to Menu wp_update_nav_menu_item($author_writer_menu_id, 0, array( 'menu-item-title' => __('About Us', 'bookstore-library'), 'menu-item-classes' => 'about-us', 'menu-item-url' => home_url('/about-us/'), 'menu-item-status' => 'publish', 'menu-item-object-id' => $author_writer_about_id, 'menu-item-object' => 'page', 'menu-item-type' => 'post_type' )); // Create Services Page with Dummy Content $author_writer_services_title = 'Services'; $author_writer_services_content = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam...
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500, 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 1960 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.
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 dont look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isnt 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.'; $author_writer_services = array( 'post_type' => 'page', 'post_title' => $author_writer_services_title, 'post_content' => $author_writer_services_content, 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'services' ); $author_writer_services_id = wp_insert_post($author_writer_services); // Add Services Page to Menu wp_update_nav_menu_item($author_writer_menu_id, 0, array( 'menu-item-title' => __('Services', 'bookstore-library'), 'menu-item-classes' => 'services', 'menu-item-url' => home_url('/services/'), 'menu-item-status' => 'publish', 'menu-item-object-id' => $author_writer_services_id, 'menu-item-object' => 'page', 'menu-item-type' => 'post_type' )); // Create Pages Page with Dummy Content $author_writer_pages_title = 'Pages'; $author_writer_pages_content = '

Our Pages

Explore all the pages we have on our website. Find information about our services, company, and more.

'; $author_writer_pages = array( 'post_type' => 'page', 'post_title' => $author_writer_pages_title, 'post_content' => $author_writer_pages_content, 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'pages' ); $author_writer_pages_id = wp_insert_post($author_writer_pages); // Add Pages Page to Menu wp_update_nav_menu_item($author_writer_menu_id, 0, array( 'menu-item-title' => __('Pages', 'bookstore-library'), 'menu-item-classes' => 'pages', 'menu-item-url' => home_url('/pages/'), 'menu-item-status' => 'publish', 'menu-item-object-id' => $author_writer_pages_id, 'menu-item-object' => 'page', 'menu-item-type' => 'post_type' )); // Create Contact Page with Dummy Content $author_writer_contact_title = 'Contact'; $author_writer_contact_content = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam...
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500, 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 1960 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.
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 dont look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isnt 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.'; $author_writer_contact = array( 'post_type' => 'page', 'post_title' => $author_writer_contact_title, 'post_content' => $author_writer_contact_content, 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'contact' ); $author_writer_contact_id = wp_insert_post($author_writer_contact); // Add Contact Page to Menu wp_update_nav_menu_item($author_writer_menu_id, 0, array( 'menu-item-title' => __('Contact', 'bookstore-library'), 'menu-item-classes' => 'contact', 'menu-item-url' => home_url('/contact/'), 'menu-item-status' => 'publish', 'menu-item-object-id' => $author_writer_contact_id, 'menu-item-object' => 'page', 'menu-item-type' => 'post_type' )); // Set the menu location if it's not already set if (!has_nav_menu($author_writer_bpmenulocation)) { $locations = get_theme_mod('nav_menu_locations'); // Use 'nav_menu_locations' to get locations array if (empty($locations)) { $locations = array(); } $locations[$author_writer_bpmenulocation] = $author_writer_menu_id; set_theme_mod('nav_menu_locations', $locations); } } //---Header--// set_theme_mod('author_writer_header_fb_new_tab', true); set_theme_mod('author_writer_facebook_url', '#'); set_theme_mod('author_writer_facebook_icon', 'fab fa-facebook-f'); set_theme_mod('author_writer_header_twt_new_tab', true); set_theme_mod('author_writer_twitter_url', '#'); set_theme_mod('author_writer_twitter_icon', 'fab fa-twitter'); set_theme_mod('author_writer_header_ins_new_tab', true); set_theme_mod('author_writer_instagram_url', '#'); set_theme_mod('author_writer_instagram_icon', 'fab fa-instagram'); set_theme_mod('author_writer_header_ut_new_tab', true); set_theme_mod('author_writer_youtube_url', '#'); set_theme_mod('author_writer_youtube_icon', 'fab fa-youtube'); // Slider Section set_theme_mod('author_writer_slider_arrows', true); set_theme_mod('author_writer_slider_top', 'Get The Latest Best Seller'); for ($i = 1; $i <= 4; $i++) { $author_writer_title = 'Meet Your Next Favorite Book'; // Create post object $my_post = array( 'post_title' => wp_strip_all_tags($author_writer_title), '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('author_writer_slider_page' . $i, $post_id); $image_url = get_stylesheet_directory_uri() . '/assets/images/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); } } } // Our Services Section // set_theme_mod('bookstore_library_workshop_show_hide', 'true'); set_theme_mod('bookstore_library_workshop_section_short_tittle', 'Latest Event'); set_theme_mod('bookstore_library_workshop_section_tittle', 'Workshops for Everyone'); set_theme_mod('bookstore_library_workshop_section_category', 'postcategory1'); // Define post category names and post titles $author_writer_category_names = array('postcategory1'); $author_writer_title_array = array( array("Things You Need to Improve for Better Customer Care") ); $author_writer_content = 'Consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitatiomco laboris nisi ut aliquip ex ea commodo consequat.'; foreach ($author_writer_category_names as $author_writer_index => $author_writer_category_name) { // Create or retrieve the post category term ID $author_writer_term = term_exists($author_writer_category_name, 'category'); if ($author_writer_term === 0 || $author_writer_term === null) { // If the term does not exist, create it $author_writer_term = wp_insert_term($author_writer_category_name, 'category'); } if (is_wp_error($author_writer_term)) { error_log('Error creating category: ' . $author_writer_term->get_error_message()); continue; // Skip to the next iteration if category creation fails } for ($author_writer_i = 0; $author_writer_i < 1; $author_writer_i++) { // Create post content $author_writer_title = $author_writer_title_array[$author_writer_index][$author_writer_i]; // Create post post object $author_writer_my_post = array( 'post_title' => wp_strip_all_tags($author_writer_title), 'post_content' => $author_writer_content, 'post_status' => 'publish', 'post_type' => 'post', // Post type set to 'post' ); // Insert the post into the database $author_writer_post_id = wp_insert_post($author_writer_my_post); if (is_wp_error($author_writer_post_id)) { error_log('Error creating post: ' . $author_writer_post_id->get_error_message()); continue; // Skip to the next post if creation fails } // Assign the category to the post wp_set_post_categories($author_writer_post_id, array((int)$author_writer_term['term_id'])); // Add custom meta fields update_post_meta($author_writer_post_id, 'bookstore_library_event_category', 'BOOK EVENT'); update_post_meta($author_writer_post_id, 'bookstore_library_event_location', '2351, 2nd Avee, Building NT Square, Califorina'); // Handle the featured image using media_sideload_image $author_writer_image_url = get_stylesheet_directory_uri() . '/assets/images/post-img.png'; $author_writer_image_id = media_sideload_image($author_writer_image_url, $author_writer_post_id, null, 'id'); if (is_wp_error($author_writer_image_id)) { error_log('Error downloading image: ' . $author_writer_image_id->get_error_message()); continue; // Skip to the next post if image download fails } // Assign featured image to post set_post_thumbnail($author_writer_post_id, $author_writer_image_id); } } // products // set_theme_mod('author_writer_product_show_hide', true); set_theme_mod('author_writer_featured_car_section_short_title', 'Discover Your Next Book'); $author_writer_title_array = array( array("A Teaspoon of Earth & Sea", "Bulle and Pelle", "The Journey of Dreams", "Life of IPL") ); foreach ($author_writer_title_array as $author_writer_titles) { // Loop to create only 4 products for ($author_writer_i = 0; $author_writer_i < 4; $author_writer_i++) { // Create product content $author_writer_title = $author_writer_titles[$author_writer_i]; $author_writer_content = '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.'; // Create product post object $author_writer_my_post = array( 'post_title' => wp_strip_all_tags($author_writer_title), 'post_content' => $author_writer_content, 'post_status' => 'publish', 'post_type' => 'product', ); // Insert the product into the database $author_writer_post_id = wp_insert_post($author_writer_my_post); if (is_wp_error($author_writer_post_id)) { error_log('Error creating product: ' . $author_writer_post_id->get_error_message()); continue; // Skip to the next product if creation fails } // Add product meta (price, etc.) update_post_meta($author_writer_post_id, '_regular_price', '25.00'); update_post_meta($author_writer_post_id, '_sale_price', '22.00'); update_post_meta($author_writer_post_id, '_price', '22.00'); // Handle the featured image $author_writer_image_url = get_template_directory_uri() . '/assets/images/product' . ($author_writer_i + 1) . '.png'; $author_writer_image_id = media_sideload_image($author_writer_image_url, $author_writer_post_id, null, 'id'); if (is_wp_error($author_writer_image_id)) { error_log('Error downloading image: ' . $author_writer_image_id->get_error_message()); continue; } set_post_thumbnail($author_writer_post_id, $author_writer_image_id); // Store the first product ID in theme mod (once) if ($author_writer_i === 0) { set_theme_mod('author_writer_bestseller_product_page', esc_url(get_permalink($author_writer_post_id))); } } } // Create 'Products' page if it doesn't exist $author_writer_page_query = new WP_Query(array( 'post_type' => 'page', 'title' => 'Products', 'post_status' => 'publish', 'posts_per_page' => 1 )); if (!$author_writer_page_query->have_posts()) { $author_writer_page_title = 'Products'; $productpage_shortcode = '[products limit="4" columns="4"]'; $author_writer_content = do_shortcode($productpage_shortcode); $author_writer_page = array( 'post_type' => 'page', 'post_title' => $author_writer_page_title, 'post_content' => $author_writer_content, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'products' ); $author_writer_page_id = wp_insert_post($author_writer_page); if (!is_wp_error($author_writer_page_id)) { set_theme_mod('author_writer_bestseller_product_page', $author_writer_page_id); } } } ?>