set_vars( $config ); $this->init(); } /** * Set variables based on configuration * @param $config Configuration parameters */ public function set_vars( $config ) { if ( isset( $config['page_slug'] ) ) { $this->page_slug = esc_attr( $config['page_slug'] ); } if ( isset( $config['page_title'] ) ) { $this->page_title = esc_attr( $config['page_title'] ); } if ( isset( $config['steps'] ) ) { $this->config_steps = $config['steps']; } $current_theme = wp_get_theme(); $this->theme_title = $current_theme->get( 'Name' ); $this->theme_name = strtolower( preg_replace( '#[^a-zA-Z]#', '', $current_theme->get( 'Name' ) ) ); $this->page_slug = apply_filters( $this->theme_name . '_theme_setup_wizard_page_slug', $this->theme_name . '-wizard' ); $this->parent_slug = apply_filters( $this->theme_name . '_theme_setup_wizard_parent_slug', '' ); } /*** Initialize hooks and actions ***/ public function init() { add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); add_action( 'admin_menu', array( $this, 'menu_page' ) ); add_action( 'wp_ajax_setup_widgets', array( $this, 'setup_widgets' ) ); } public function enqueue_scripts() { wp_enqueue_style( 'theme-wizard-style', get_template_directory_uri() . '/theme-wizard/assets/css/theme-wizard-style.css'); wp_register_script( 'theme-wizard-script', get_template_directory_uri() . '/theme-wizard/assets/js/theme-wizard-script.js', array( 'jquery' )); wp_localize_script( 'theme-wizard-script', 'bike_workshop_whizzie_params', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'verify_text' => esc_html( 'verifying', 'bike-workshop' ) ) ); wp_enqueue_script( 'theme-wizard-script' ); } public function menu_page() { add_theme_page( esc_html( $this->page_title ), esc_html( $this->page_title ), 'manage_options', $this->page_slug, array( $this, 'bike_workshop_setup_wizard' ) ); } /*** Display the wizard page content ***/ public function wizard_page() { ?>
wizard_page(); ?>
array( 'id' => 'intro', 'title' => __( 'Welcome to ', 'bike-workshop' ) . $this->theme_title, 'view' => 'get_step_intro', 'callback' => 'do_next_step', 'button_text' => __( 'Start Now', 'bike-workshop' ), 'can_skip' => false ), 'widgets' => array( 'id' => 'widgets', 'title' => __( 'Demo Importer', 'bike-workshop' ), 'view' => 'get_step_widgets', 'callback' => 'install_widgets', 'button_text' => __( 'Import Demo', 'bike-workshop' ), 'can_skip' => true ), 'done' => array( 'id' => 'done', 'title' => __( 'All Done', 'bike-workshop' ), 'view' => 'get_step_done' ) ); return $steps; } /*** Display the content for the intro step ***/ public function get_step_intro() { ?>

  1. > Pages >> Add New','bike-workshop'); ?>

  1. > Appearance >> Menu','bike-workshop'); ?>

  1. > Appearance >> Widgets','bike-workshop'); ?>
__('Home','bike-workshop'), 'menu-item-classes' => 'home', 'menu-item-url' => home_url( '/' ), 'menu-item-status' => 'publish')); wp_update_nav_menu_item($bike_workshop_menu_id, 0, array( 'menu-item-title' => __('Blogs','bike-workshop'), 'menu-item-classes' => 'blog', 'menu-item-url' => get_permalink(get_page_by_title('Blogs')), 'menu-item-status' => 'publish')); wp_update_nav_menu_item($bike_workshop_menu_id, 0, array( 'menu-item-title' => __('Bikes','bike-workshop'), 'menu-item-classes' => 'bikes', 'menu-item-url' => get_permalink(get_page_by_title('Bikes')), 'menu-item-status' => 'publish')); wp_update_nav_menu_item($bike_workshop_menu_id, 0, array( 'menu-item-title' => __('Cars','bike-workshop'), 'menu-item-classes' => 'cars', 'menu-item-url' => get_permalink(get_page_by_title('Cars')), 'menu-item-status' => 'publish')); wp_update_nav_menu_item($bike_workshop_menu_id, 0, array( 'menu-item-title' => __('Spares','bike-workshop'), 'menu-item-classes' => 'spares', 'menu-item-url' => get_permalink(get_page_by_title('Spares')), 'menu-item-status' => 'publish')); if( !has_nav_menu( $bike_workshop_bpmenulocation ) ){ $locations = get_theme_mod('nav_menu_locations'); $locations[$bike_workshop_bpmenulocation] = $bike_workshop_menu_id; set_theme_mod( 'nav_menu_locations', $locations ); } } } // ------------- /*** Imports demo content ***/ ----------------- // public function setup_widgets() { // Create a front page and assigned the template $bike_workshop_home_title = 'Home'; $bike_workshop_home_check = get_page_by_title($bike_workshop_home_title); $bike_workshop_home = array( 'post_type' => 'page', 'post_title' => $bike_workshop_home_title, 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'home' ); $bike_workshop_home_id = wp_insert_post($bike_workshop_home); //Set the static front page $bike_workshop_home = get_page_by_title( 'Home' ); update_option( 'page_on_front', $bike_workshop_home->ID ); update_option( 'show_on_front', 'page' ); // Create a posts page and assigned the template $bike_workshop_blog_title = 'Blogs'; $bike_workshop_blog = get_page_by_title($bike_workshop_blog_title); if (!$bike_workshop_blog) { $bike_workshop_blog = array( 'post_type' => 'page', 'post_title' => $bike_workshop_blog_title, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'blog' ); $bike_workshop_blog_id = wp_insert_post($bike_workshop_blog); if (is_wp_error($bike_workshop_blog_id)) { // Handle error } } else { $bike_workshop_blog_id = $bike_workshop_blog->ID; } // Set the posts page update_option('page_for_posts', $bike_workshop_blog_id); // Create a bikes and assigned the template $bike_workshop_bikes_title = 'Bikes'; $bike_workshop_bikes_check = get_page_by_title($bike_workshop_bikes_title); $bike_workshop_bikes = array( 'post_type' => 'page', 'post_title' => $bike_workshop_bikes_title, 'post_content' => '

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.

', 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'bikes' ); $bike_workshop_bikes_id = wp_insert_post($bike_workshop_bikes); // Create a cars and assigned the template $bike_workshop_cars_title = 'Cars'; $bike_workshop_cars_check = get_page_by_title($bike_workshop_cars_title); $bike_workshop_cars = array( 'post_type' => 'page', 'post_title' => $bike_workshop_cars_title, 'post_content' => '

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.

', 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'cars' ); $bike_workshop_cars_id = wp_insert_post($bike_workshop_cars); // Create a spares and assigned the template $bike_workshop_spares_title = 'Spares'; $bike_workshop_spares_check = get_page_by_title($bike_workshop_spares_title); $bike_workshop_spares = array( 'post_type' => 'page', 'post_title' => $bike_workshop_spares_title, 'post_content' => '

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.

', 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'spares' ); $bike_workshop_spares_id = wp_insert_post($bike_workshop_spares); /* Enable Topbar */ set_theme_mod('bike_workshop_enable_topbar',true); set_theme_mod('bike_workshop_welcome_topbar_text','SUBSCRIBE TO OUR NEWSLETTER'); set_theme_mod('bike_workshop_wishlist_button_link','#'); set_theme_mod('bike_workshop_account_button_link','#'); // ------------------------------------------ Blogs for Sections -------------------------------------- // Create categories if not already created $bike_workshop_category_slider = wp_create_category('Banner'); $bike_workshop_category_services = wp_create_category('Services'); // Array of categories to assign to each set of posts $bike_workshop_categories = array($bike_workshop_category_slider, $bike_workshop_category_services); // Array of image URLs for the "Services" category $services_images = array( get_template_directory_uri() . '/resource/img/service1.png', get_template_directory_uri() . '/resource/img/service2.png', get_template_directory_uri() . '/resource/img/service3.png', ); // Loop to create posts for ($i = 1; $i <= 6; $i++) { $title = array( // Banner 'FOR EVERY MILE', 'Your ride, every mile', 'Precision care, every mile', // Services 'CRUISERS', 'SPORTS BIKES', 'ADVENTURE BIKES', ); $content = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since.'; // Determine category and post index to use for title $category_index = ($i <= 3) ? 0 : 1; // First 3 for Slider, next 3 for Services $post_title = $title[$i - 1]; // Adjust for zero-based index in title array // Create post object $my_post = array( 'post_title' => wp_strip_all_tags($post_title), 'post_content' => $content, 'post_status' => 'publish', 'post_type' => 'post', 'post_category' => array($bike_workshop_categories[$category_index]), // Assign Slider to first 3, Services to next 3 ); // Insert the post into the database $post_id = wp_insert_post($my_post); // Determine the category and set image URLs based on category if ($category_index === 0) { // Slider category $slider_index = $i % 3 + 1; // Cycles through 1, 2, 3 $bike_workshop_image_url = get_template_directory_uri() . "/resource/img/banner{$slider_index}.png"; $bike_workshop_image_name = "slider{$slider_index}.png"; } else { // Services category // Use different images for each post in Services category $services_image_index = $i - 4; // Correct index for the Services images array (i: 4, 5, 6 -> index: 0, 1, 2) $bike_workshop_image_url = $services_images[$services_image_index]; $bike_workshop_image_name = basename($bike_workshop_image_url); } $bike_workshop_upload_dir = wp_upload_dir(); $bike_workshop_image_data = @file_get_contents($bike_workshop_image_url); // Use @ to suppress errors if ($bike_workshop_image_data === false) { continue; // Skip this iteration if image data is not found } $bike_workshop_unique_file_name = wp_unique_filename($bike_workshop_upload_dir['path'], $bike_workshop_image_name); $filename = basename($bike_workshop_unique_file_name); if (wp_mkdir_p($bike_workshop_upload_dir['path'])) { $file = $bike_workshop_upload_dir['path'] . '/' . $filename; } else { $file = $bike_workshop_upload_dir['basedir'] . '/' . $filename; } if ( ! function_exists( 'WP_Filesystem' ) ) { require_once( ABSPATH . 'wp-admin/includes/file.php' ); } WP_Filesystem(); global $wp_filesystem; if ( ! $wp_filesystem->put_contents( $file, $bike_workshop_image_data, FS_CHMOD_FILE ) ) { wp_die( 'Error saving file!' ); } $wp_filetype = wp_check_filetype($filename, null); $attachment = array( 'post_mime_type' => $wp_filetype['type'], 'post_title' => sanitize_file_name($filename), 'post_content' => '', 'post_status' => 'inherit' ); $bike_workshop_attach_id = wp_insert_attachment($attachment, $file, $post_id); require_once(ABSPATH . 'wp-admin/includes/image.php'); $bike_workshop_attach_data = wp_generate_attachment_metadata($bike_workshop_attach_id, $file); wp_update_attachment_metadata($bike_workshop_attach_id, $bike_workshop_attach_data); set_post_thumbnail($post_id, $bike_workshop_attach_id); } // ------------------------ Banner Section Settings ------------------------ // set_theme_mod('bike_workshop_enable_banner_section', true); set_theme_mod('bike_workshop_banner_heading', 'EXPERT CARE'); for ($i = 1; $i <= 3; $i++) { set_theme_mod('bike_workshop_banner_button_label_' . $i, 'Explore Now'); set_theme_mod('bike_workshop_banner_button_link_' . $i, '#'); } set_theme_mod('bike_workshop_banner_slider_category', 'Banner'); // ------------------------ Services Section Settings ------------------------ // set_theme_mod('bike_workshop_heading_services_section', 'Types of vehicles we repair'); set_theme_mod('bike_workshop_services_number', '2'); set_theme_mod('bike_workshop_enable_services_section', true); // Tab Titles $tab_names = array('2 Wheeler', '4 Wheeler'); for ($i = 1; $i <= 2; $i++) { set_theme_mod('bike_workshop_services_text' . $i, $tab_names[$i - 1]); } // ---------------------------------------- Related post_tag --------------------------------------------------- // set_theme_mod('bike_workshop_post_related_post_label','Related Posts'); set_theme_mod('bike_workshop_related_posts_count','3'); $this->bike_workshop_customizer_primary_menu(); } }