' . esc_html__('Your demo import has been completed successfully.', 'appointment-booking') . '';
echo '' . esc_html__('View Site', 'appointment-booking') . '';
}
//POST and update the customizer and other related data of
if (isset($_POST['submit'])) {
// ------- Create Nav Menu --------
$appointment_booking_menuname = 'Main Menus';
$appointment_booking_bpmenulocation = 'primary';
$appointment_booking_menu_exists = wp_get_nav_menu_object($appointment_booking_menuname);
if (!$appointment_booking_menu_exists) {
$appointment_booking_menu_id = wp_create_nav_menu($appointment_booking_menuname);
// Create Home Page
$appointment_booking_home_title = 'Home';
$appointment_booking_home = array(
'post_type' => 'page',
'post_title' => $appointment_booking_home_title,
'post_content' => '',
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'home'
);
$appointment_booking_home_id = wp_insert_post($appointment_booking_home);
// Assign Home Page Template
add_post_meta($appointment_booking_home_id, '_wp_page_template', 'page-template/custom-home-page.php');
// Update options to set Home Page as the front page
update_option('page_on_front', $appointment_booking_home_id);
update_option('show_on_front', 'page');
// Add Home Page to Menu
wp_update_nav_menu_item($appointment_booking_menu_id, 0, array(
'menu-item-title' => __('Home', 'appointment-booking'),
'menu-item-classes' => 'home',
'menu-item-url' => home_url('/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $appointment_booking_home_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create About Us Page with Dummy Content
$appointment_booking_about_title = 'About Us';
$appointment_booking_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.';
$appointment_booking_about = array(
'post_type' => 'page',
'post_title' => $appointment_booking_about_title,
'post_content' => $appointment_booking_about_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'about-us'
);
$appointment_booking_about_id = wp_insert_post($appointment_booking_about);
// Add About Us Page to Menu
wp_update_nav_menu_item($appointment_booking_menu_id, 0, array(
'menu-item-title' => __('About Us', 'appointment-booking'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $appointment_booking_about_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create Services Page with Dummy Content
$appointment_booking_about_title = 'Services';
$appointment_booking_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.';
$appointment_booking_about = array(
'post_type' => 'page',
'post_title' => $appointment_booking_about_title,
'post_content' => $appointment_booking_about_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'about-us'
);
$appointment_booking_about_id = wp_insert_post($appointment_booking_about);
// Add Services Page to Menu
wp_update_nav_menu_item($appointment_booking_menu_id, 0, array(
'menu-item-title' => __('Services', 'appointment-booking'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $appointment_booking_about_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create Gallery Page with Dummy Content
$appointment_booking_about_title = 'Gallery';
$appointment_booking_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.';
$appointment_booking_about = array(
'post_type' => 'page',
'post_title' => $appointment_booking_about_title,
'post_content' => $appointment_booking_about_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'about-us'
);
$appointment_booking_about_id = wp_insert_post($appointment_booking_about);
// Add Gallery Page to Menu
wp_update_nav_menu_item($appointment_booking_menu_id, 0, array(
'menu-item-title' => __('Gallery', 'appointment-booking'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $appointment_booking_about_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create Blog Page
$appointment_booking_blog_page_title = 'Blog';
$appointment_booking_blog_page_query = new WP_Query(array(
'post_type' => 'page',
'name' => sanitize_title($appointment_booking_blog_page_title),
'post_status' => 'publish',
'posts_per_page' => 1
));
if (!$appointment_booking_blog_page_query->have_posts()) {
$appointment_booking_blog_page = array(
'post_type' => 'page',
'post_title' => $appointment_booking_blog_page_title,
'post_status' => 'publish',
'post_author' => 1,
);
$appointment_booking_blog_page_id = wp_insert_post($appointment_booking_blog_page);
update_option('page_for_posts', $appointment_booking_blog_page_id);
wp_update_nav_menu_item($appointment_booking_menu_id, 0, array(
'menu-item-title' => __('Blog', 'appointment-booking'),
'menu-item-url' => get_permalink($appointment_booking_blog_page_id),
'menu-item-status' => 'publish',
'menu-item-object-id' => $appointment_booking_blog_page_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type',
));
}
// Create Pages Page with Dummy Content
$appointment_booking_pages_title = 'Pages';
$appointment_booking_pages_content = '
Explore all the pages we have on our website. Find information about our services, company, and more.
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.
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.';
$appointment_booking_pages = array(
'post_type' => 'page',
'post_title' => $appointment_booking_pages_title,
'post_content' => $appointment_booking_pages_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'pages'
);
$appointment_booking_pages_id = wp_insert_post($appointment_booking_pages);
// Add Pages Page to Menu
wp_update_nav_menu_item($appointment_booking_menu_id, 0, array(
'menu-item-title' => __('Pages', 'appointment-booking'),
'menu-item-classes' => 'pages',
'menu-item-url' => home_url('/pages/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $appointment_booking_pages_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create Contact US Page with Dummy Content
$appointment_booking_about_title = 'Contact US';
$appointment_booking_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.';
$appointment_booking_about = array(
'post_type' => 'page',
'post_title' => $appointment_booking_about_title,
'post_content' => $appointment_booking_about_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'about-us'
);
$appointment_booking_about_id = wp_insert_post($appointment_booking_about);
// Add Contact US Page to Menu
wp_update_nav_menu_item($appointment_booking_menu_id, 0, array(
'menu-item-title' => __('Contact US', 'appointment-booking'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $appointment_booking_about_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Set the menu location if it's not already set
if (!has_nav_menu($appointment_booking_bpmenulocation)) {
$locations = get_theme_mod('nav_menu_locations'); // Use 'nav_menu_locations' to get locations array
if (empty($locations)) {
$locations = array();
}
$locations[$appointment_booking_bpmenulocation] = $appointment_booking_menu_id;
set_theme_mod('nav_menu_locations', $locations);
}
}
// Set the demo import completion flag
update_option('appointment_booking_demo_import_completed', true);
// Display success message and "View Site" button
echo '' . esc_html__('Your demo import has been completed successfully.', 'appointment-booking') . '
';
echo '' . esc_html__('View Site', 'appointment-booking') . '';
//end
// Top Bar //
set_theme_mod( 'appointment_booking_email_address', 'support@example.com' );
set_theme_mod( 'appointment_booking_email_icon', 'fas fa-envelope-open' );
set_theme_mod( 'appointment_booking_phone_number', '+00 123 456 7890' );
set_theme_mod( 'appointment_booking_phone_icon', 'fas fa-phone' );
set_theme_mod( 'appointment_booking_search_icon', 'fas fa-search' );
set_theme_mod( 'appointment_booking_search_close_icon', 'fa fa-window-close' );
// slider section start //
set_theme_mod( 'appointment_booking_slider_button_text', 'READ MORE' );
set_theme_mod( 'appointment_booking_top_button_url', '#' );
set_theme_mod( 'appointment_booking_horizontal_text', 'Keeping Your Body AT It Best!' );
for($appointment_booking_i=1;$appointment_booking_i<=3;$appointment_booking_i++){
$appointment_booking_slider_title = 'Lorem ipsum dolor sit amet, consectetur';
$appointment_booking_slider_content = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.';
// Create post object
$my_post = array(
'post_title' => wp_strip_all_tags( $appointment_booking_slider_title ),
'post_content' => $appointment_booking_slider_content,
'post_status' => 'publish',
'post_type' => 'page',
);
// Insert the post into the database
$appointment_booking_post_id = wp_insert_post( $my_post );
if ($appointment_booking_post_id) {
// Set the theme mod for the slider page
set_theme_mod('appointment_booking_slider_page' . $appointment_booking_i, $appointment_booking_post_id);
$appointment_booking_image_url = get_template_directory_uri().'/assets/images/slider'.$appointment_booking_i.'.png';
$appointment_booking_image_id = media_sideload_image($appointment_booking_image_url, $appointment_booking_post_id, null, 'id');
if (!is_wp_error($appointment_booking_image_id)) {
// Set the downloaded image as the post's featured image
set_post_thumbnail($appointment_booking_post_id, $appointment_booking_image_id);
}
}
}
// About Section
set_theme_mod('appointment_booking_section_text', 'SERVICES' );
set_theme_mod('appointment_booking_section_title', 'OUR WORKING AREA' );
// post page
$appointment_booking_banner_title = 'Lorem ipsum donor';
$appointment_booking_banner_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 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.';
// Create post object
// Create post object
$my_post = array(
'post_title' => wp_strip_all_tags( $appointment_booking_banner_title ),
'post_content' => $appointment_booking_banner_content,
'post_status' => 'publish',
'post_type' => 'page',
);
// Insert the post into the database
$appointment_booking_post_id = wp_insert_post( $my_post );
if ($appointment_booking_post_id) {
// Set the theme mod for the slider page
set_theme_mod('appointment_booking_about_section', $appointment_booking_post_id);
}
//Services Section
set_theme_mod('appointment_booking_services_category', 'postcategory1' );
$appointment_booking_category_names = array('postcategory1', 'postcategory2');
$appointment_booking_title_array = array(
array("SERVICE1", "SERVICE2", "SERVICE3", "SERVICE4", "SERVICE5", "SERVICE6"),
array("SERVICE1", "SERVICE2", "SERVICE3", "SERVICE4", "SERVICE5", "SERVICE6"),
);
foreach ($appointment_booking_category_names as $appointment_booking_index => $appointment_booking_category_name) {
// Create or retrieve the post category term ID
$appointment_booking_term = term_exists($appointment_booking_category_name, 'category');
if ($appointment_booking_term === 0 || $appointment_booking_term === null) {
// If the term does not exist, create it
$appointment_booking_term = wp_insert_term($appointment_booking_category_name, 'category');
}
if (is_wp_error($appointment_booking_term)) {
error_log('Error creating category: ' . $appointment_booking_term->get_error_message());
continue; // Skip to the next iteration if category creation fails
}
for ($appointment_booking_i = 0; $appointment_booking_i < 6; $appointment_booking_i++) {
// Create post content
$appointment_booking_title = $appointment_booking_title_array[$appointment_booking_index][$appointment_booking_i];
// Create post post object
$appointment_booking_my_post = array(
'post_title' => wp_strip_all_tags($appointment_booking_title),
'post_status' => 'publish',
'post_type' => 'post', // Post type set to 'post'
);
// Insert the post into the database
$appointment_booking_post_id = wp_insert_post($appointment_booking_my_post);
if (is_wp_error($appointment_booking_post_id)) {
error_log('Error creating post: ' . $appointment_booking_post_id->get_error_message());
continue; // Skip to the next post if creation fails
}
// Assign the category to the post
wp_set_post_categories($appointment_booking_post_id, array((int)$appointment_booking_term['term_id']));
// Handle the featured image using media_sideload_image
$appointment_booking_image_url = get_template_directory_uri() . '/assets/images/services' . ($appointment_booking_i + 1) . '.png';
$appointment_booking_image_id = media_sideload_image($appointment_booking_image_url, $appointment_booking_post_id, null, 'id');
if (is_wp_error($appointment_booking_image_id)) {
error_log('Error downloading image: ' . $appointment_booking_image_id->get_error_message());
continue; // Skip to the next post if image download fails
}
// Assign featured image to post
set_post_thumbnail($appointment_booking_post_id, $appointment_booking_image_id);
}
}
//Copyright Text
set_theme_mod( 'appointment_booking_footer_text', 'By VWThemes' );
}
?>