';
// 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'
),
);
// Include required files for plugin installation
include_once(ABSPATH . 'wp-admin/includes/plugin-install.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());
echo 'Error installing plugin: ' . esc_html($plugin['slug']) . ' - ' . esc_html($result->get_error_message());
continue;
}
}
// If the plugin exists but 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());
echo 'Error activating plugin: ' . esc_html($plugin['slug']) . ' - ' . esc_html($result->get_error_message());
}
}
}
// Hide the preloader after the process is complete
echo '';
}
// Call the import function
auto_dealer_lite_import_demo_content();
// ------- Create Nav Menu --------
$automobile_hub_menuname = 'Main Menus';
$automobile_hub_bpmenulocation = 'primary-menu';
$automobile_hub_menu_exists = wp_get_nav_menu_object($automobile_hub_menuname);
if (!$automobile_hub_menu_exists) {
$automobile_hub_menu_id = wp_create_nav_menu($automobile_hub_menuname);
// Create Home Page
$automobile_hub_home_title = 'Home';
$automobile_hub_home = array(
'post_type' => 'page',
'post_title' => $automobile_hub_home_title,
'post_content' => '',
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'home'
);
$automobile_hub_home_id = wp_insert_post($automobile_hub_home);
// Assign Home Page Template
add_post_meta($automobile_hub_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', $automobile_hub_home_id);
update_option('show_on_front', 'page');
// Add Home Page to Menu
wp_update_nav_menu_item($automobile_hub_menu_id, 0, array(
'menu-item-title' => __('Home', 'automobile-hub'),
'menu-item-classes' => 'home',
'menu-item-url' => home_url('/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $automobile_hub_home_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create About Us Page with Dummy Content
$automobile_hub_about_title = 'About Us';
$automobile_hub_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.';
$automobile_hub_about = array(
'post_type' => 'page',
'post_title' => $automobile_hub_about_title,
'post_content' => $automobile_hub_about_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'about-us'
);
$automobile_hub_about_id = wp_insert_post($automobile_hub_about);
// Add About Us Page to Menu
wp_update_nav_menu_item($automobile_hub_menu_id, 0, array(
'menu-item-title' => __('About Us', 'automobile-hub'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $automobile_hub_about_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create Services Page with Dummy Content
$automobile_hub_services_title = 'Services';
$automobile_hub_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.';
$automobile_hub_services = array(
'post_type' => 'page',
'post_title' => $automobile_hub_services_title,
'post_content' => $automobile_hub_services_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'services'
);
$automobile_hub_services_id = wp_insert_post($automobile_hub_services);
// Add Services Page to Menu
wp_update_nav_menu_item($automobile_hub_menu_id, 0, array(
'menu-item-title' => __('Services', 'automobile-hub'),
'menu-item-classes' => 'services',
'menu-item-url' => home_url('/services/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $automobile_hub_services_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create Pages Page with Dummy Content
$automobile_hub_pages_title = 'Pages';
$automobile_hub_pages_content = 'Our Pages
Explore all the pages we have on our website. Find information about our services, company, and more.
';
$automobile_hub_pages = array(
'post_type' => 'page',
'post_title' => $automobile_hub_pages_title,
'post_content' => $automobile_hub_pages_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'pages'
);
$automobile_hub_pages_id = wp_insert_post($automobile_hub_pages);
// Add Pages Page to Menu
wp_update_nav_menu_item($automobile_hub_menu_id, 0, array(
'menu-item-title' => __('Pages', 'automobile-hub'),
'menu-item-classes' => 'pages',
'menu-item-url' => home_url('/pages/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $automobile_hub_pages_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create Contact Page with Dummy Content
$automobile_hub_contact_title = 'Contact';
$automobile_hub_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.';
$automobile_hub_contact = array(
'post_type' => 'page',
'post_title' => $automobile_hub_contact_title,
'post_content' => $automobile_hub_contact_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'contact'
);
$automobile_hub_contact_id = wp_insert_post($automobile_hub_contact);
// Add Contact Page to Menu
wp_update_nav_menu_item($automobile_hub_menu_id, 0, array(
'menu-item-title' => __('Contact', 'automobile-hub'),
'menu-item-classes' => 'contact',
'menu-item-url' => home_url('/contact/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $automobile_hub_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($automobile_hub_bpmenulocation)) {
$locations = get_theme_mod('nav_menu_locations'); // Use 'nav_menu_locations' to get locations array
if (empty($locations)) {
$locations = array();
}
$locations[$automobile_hub_bpmenulocation] = $automobile_hub_menu_id;
set_theme_mod('nav_menu_locations', $locations);
}
}
//---Header--//
set_theme_mod('automobile_hub_mail_text', 'EMAIL ADDRESS');
set_theme_mod('automobile_hub_mail', 'automobile22@gmail.com');
set_theme_mod('automobile_hub_mail_icon', 'fas fa-envelope-open');
set_theme_mod('automobile_hub_call_text', 'PHONE NO');
set_theme_mod('automobile_hub_call', '1234567890');
set_theme_mod('automobile_hub_call_icon', 'fas fa-phone');
set_theme_mod('automobile_hub_cart_option', true);
set_theme_mod('automobile_hub_cart_icon', 'fas fa-shopping-basket');
// Slider Section
set_theme_mod('automobile_hub_slider_arrows', true);
set_theme_mod('automobile_hub_slider_text', 'FIND YOUR DREAM CAR');
set_theme_mod('automobile_hub_slider_icon', 'fas fa-hand-point-right');
for ($i = 1; $i <= 4; $i++) {
$automobile_hub_title = 'SUPERCAR FERRARI SMART DRIVE';
$automobile_hub_content = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard.';
// Create post object
$my_post = array(
'post_title' => wp_strip_all_tags($automobile_hub_title),
'post_content' => $automobile_hub_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('automobile_hub_slider_page' . $i, $post_id);
$image_url = get_stylesheet_directory_uri() . '/assets/images/slider-img.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);
}
}
}
// service Section
set_theme_mod('auto_dealer_lite_featured_car_section_short_title', 'AUTOMOBILE CARS');
set_theme_mod('auto_dealer_lite_featured_car_section_tittle', 'OUR FEATURED CARS');
set_theme_mod('auto_dealer_lite_featured_car_button_text', 'VIEW ALL CARS');
set_theme_mod('auto_dealer_lite_featured_car_button_link', '#');
$auto_dealer_lite_post_name_array = array('THE NEW PANAMERA MODELS', '911 CARRERA MODELS');
set_theme_mod('auto_dealer_lite_num_posts', '2');
set_theme_mod('auto_dealer_lite_compare_price1', '$85,000.00');
set_theme_mod('auto_dealer_lite_compare_price2', '$85,000.00');
set_theme_mod('auto_dealer_lite_body_type1', 'New');
set_theme_mod('auto_dealer_lite_body_type2', 'New');
set_theme_mod('auto_dealer_lite_model_year1', '2017');
set_theme_mod('auto_dealer_lite_model_year2', '2017');
set_theme_mod('auto_dealer_lite_engine_type1', 'Automatic');
set_theme_mod('auto_dealer_lite_engine_type2', 'Automatic');
set_theme_mod('auto_dealer_lite_car_color1', 'Black');
set_theme_mod('auto_dealer_lite_car_color2', 'Black');
set_theme_mod('auto_dealer_lite_mileage1', '164mph');
set_theme_mod('auto_dealer_lite_mileage2', '164mph');
// Create a category
$auto_dealer_lite_category_name = 'Featured'; // You can change this name
$auto_dealer_lite_featured_car_section_category = wp_create_category($auto_dealer_lite_category_name);
// Ensure the category is created
if (is_wp_error($auto_dealer_lite_featured_car_section_category)) {
return; // Exit if category creation failed
}
// Set theme mod for featured section category
set_theme_mod('auto_dealer_lite_featured_car_section_category', $auto_dealer_lite_category_name);
for ($i = 0; $i < count($auto_dealer_lite_post_name_array); $i++) {
// Create post object
$auto_dealer_lite_post_name = $auto_dealer_lite_post_name_array[$i];
$my_post = array(
'post_title' => wp_strip_all_tags($auto_dealer_lite_post_name),
'post_status' => 'publish',
'post_type' => 'post',
'post_category' => array($auto_dealer_lite_featured_car_section_category),
);
// Insert the post into the database
$post_id = wp_insert_post($my_post);
// Handle image
$image_url = get_stylesheet_directory_uri() . '/assets/images/post-img.png';
// Download and attach image
$image_id = media_sideload_image($image_url, $post_id, null, 'id');
if (!is_wp_error($image_id)) {
// Set featured image to post
set_post_thumbnail($post_id, $image_id);
}
}
}
?>