' . esc_html__('Your demo import has been completed successfully.', 'advance-pet-care') . '';
echo '' . esc_html__('VIEW SITE', 'advance-pet-care') . '';
}
if (isset($_POST['submit'])) {
// --- Menu ---
$advance_pet_care_primary_menu_name = 'Main Menu';
$advance_pet_care_primary_menu_location = 'primary';
$advance_pet_care_primary_menu_exists = wp_get_nav_menu_object($advance_pet_care_primary_menu_name);
if (!$advance_pet_care_primary_menu_exists) {
// Create the left menu
$advance_pet_care_primary_menu_id = wp_create_nav_menu($advance_pet_care_primary_menu_name);
// Create and assign the Home page
$advance_pet_care_home_page_id = wp_insert_post(array(
'post_type' => 'page',
'post_title' => 'Home',
'post_content' => '',
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'home'
));
// Assign template and set as front page
add_post_meta($advance_pet_care_home_page_id, '_wp_page_template', 'page-template/custom-front-page.php');
update_option('page_on_front', $advance_pet_care_home_page_id);
update_option('show_on_front', 'page');
// Add Home page to the left menu
wp_update_nav_menu_item($advance_pet_care_primary_menu_id, 0, array(
'menu-item-title' => __('Home', 'advance-pet-care'),
'menu-item-classes' => 'home',
'menu-item-url' => home_url('/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $advance_pet_care_home_page_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type',
));
// Create and assign the About Us page
$advance_pet_care_about_us_page_id = wp_insert_post(array(
'post_type' => 'page',
'post_title' => 'About Us',
'post_content' => '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.',
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'about-us'
));
// Add About Us page to the left menu
wp_update_nav_menu_item($advance_pet_care_primary_menu_id, 0, array(
'menu-item-title' => __('About Us', 'advance-pet-care'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $advance_pet_care_about_us_page_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type',
));
// Create and assign the Services page
$advance_pet_care_about_us_page_id = wp_insert_post(array(
'post_type' => 'page',
'post_title' => 'Services',
'post_content' => '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.',
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'about-us'
));
// Add Services page to the left menu
wp_update_nav_menu_item($advance_pet_care_primary_menu_id, 0, array(
'menu-item-title' => __('Services', 'advance-pet-care'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $advance_pet_care_about_us_page_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type',
));
// Create and assign the Shop page
$advance_pet_care_about_us_page_id = wp_insert_post(array(
'post_type' => 'page',
'post_title' => 'Shop',
'post_content' => '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.',
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'about-us'
));
// Add Shop page to the left menu
wp_update_nav_menu_item($advance_pet_care_primary_menu_id, 0, array(
'menu-item-title' => __('Shop', 'advance-pet-care'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $advance_pet_care_about_us_page_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type',
));
// CREATE BLOG PAGE
$advance_pet_care_blog_page = get_page_by_path('blog');
if (!$advance_pet_care_blog_page) {
$advance_pet_care_blog_page_id = wp_insert_post(array(
'post_type' => 'page',
'post_title' => 'Blog',
'post_status' => 'publish',
'post_name' => 'blog',
));
} else {
$advance_pet_care_blog_page_id = $advance_pet_care_blog_page->ID;
}
update_option('page_for_posts', $advance_pet_care_blog_page_id);
wp_update_nav_menu_item($advance_pet_care_primary_menu_id, 0, array(
'menu-item-title' => __('Blog', 'advance-pet-care'),
'menu-item-object-id' => $advance_pet_care_blog_page_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type',
'menu-item-status' => 'publish',
));
// Create and assign the Pages page
$advance_pet_care_about_us_page_id = wp_insert_post(array(
'post_type' => 'page',
'post_title' => 'Pages',
'post_content' => '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.',
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'about-us'
));
// Add Pages page to the left menu
wp_update_nav_menu_item($advance_pet_care_primary_menu_id, 0, array(
'menu-item-title' => __('Pages', 'advance-pet-care'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $advance_pet_care_about_us_page_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type',
));
// Create and assign the Contact page
$advance_pet_care_about_us_page_id = wp_insert_post(array(
'post_type' => 'page',
'post_title' => 'Contact',
'post_content' => '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.',
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'about-us'
));
// Add Contact page to the left menu
wp_update_nav_menu_item($advance_pet_care_primary_menu_id, 0, array(
'menu-item-title' => __('Contact', 'advance-pet-care'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $advance_pet_care_about_us_page_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type',
));
// Create and assign the Appointment page
$advance_pet_care_about_us_page_id = wp_insert_post(array(
'post_type' => 'page',
'post_title' => 'Appointment',
'post_content' => '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.',
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'about-us'
));
// Add Appointment page to the left menu
wp_update_nav_menu_item($advance_pet_care_primary_menu_id, 0, array(
'menu-item-title' => __('Appointment', 'advance-pet-care'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $advance_pet_care_about_us_page_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type',
));
// Assign left menu to its location
$advance_pet_care_locations = get_theme_mod('nav_menu_locations', array());
$advance_pet_care_locations[$advance_pet_care_primary_menu_location] = $advance_pet_care_primary_menu_id;
set_theme_mod('nav_menu_locations', $advance_pet_care_locations);
}
// Set the demo import completion flag
update_option('advance_pet_care_demo_import_completed', true);
// Display success message and "View Site" button
echo '' . esc_html__('Your demo import has been completed successfully.', 'advance-pet-care') . '
';
echo '' . esc_html__('VIEW SITE', 'advance-pet-care') . '';
//end
// Social Icons
set_theme_mod( 'advance_pet_care_facebook_url', '#' );
set_theme_mod( 'advance_pet_care_twitter_url', '#' );
set_theme_mod( 'advance_pet_care_youtube_url', '#' );
set_theme_mod( 'advance_pet_care_insta_url', '#' );
set_theme_mod( 'advance_pet_care_linkedin_url', '#' );
// Topbar Section
set_theme_mod( 'advance_pet_care_mail1', 'exp1234@example.com' );
set_theme_mod( 'advance_pet_care_phone1', '+1800-123-456-7890' );
set_theme_mod( 'advance_pet_care_time', 'Opening Time :-' );
set_theme_mod( 'advance_pet_care_time1', 'Mon-Fri 09 Am To 16 Pm' );
set_theme_mod( 'advance_pet_care_address', 'Address:-' );
set_theme_mod( 'advance_pet_care_address1', 'We Give Special Care To Your Loving Pet' );
// Slider
for($advance_pet_care_i=1;$advance_pet_care_i<=4;$advance_pet_care_i++){
$advance_pet_care_slider_title = 'Lorem ipsum dolor sit amet consectetur adipiscing elit';
$advance_pet_care_slider_content = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.';
// Create post object
$advance_pet_care_my_post = array(
'post_title' => wp_strip_all_tags( $advance_pet_care_slider_title ),
'post_content' => $advance_pet_care_slider_content,
'post_status' => 'publish',
'post_type' => 'page',
);
// Insert the post into the database
$advance_pet_care_post_id = wp_insert_post( $advance_pet_care_my_post );
if ($advance_pet_care_post_id) {
// Set the theme mod for the slider page
set_theme_mod('advance_pet_care_slider_page' . $advance_pet_care_i, $advance_pet_care_post_id);
$advance_pet_care_image_url = get_template_directory_uri().'/images/slider'.$advance_pet_care_i.'.png';
$advance_pet_care_image_id = media_sideload_image($advance_pet_care_image_url, $advance_pet_care_post_id, null, 'id');
if (!is_wp_error($advance_pet_care_image_id)) {
// Set the downloaded image as the post's featured image
set_post_thumbnail($advance_pet_care_post_id, $advance_pet_care_image_id);
}
}
}
// Welcome Section
$advance_pet_care_post_title = 'Welcome To Advance Pet Care';
$advance_pet_care_post_content = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys 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.';
// Create post object
$advance_pet_care_my_post = array(
'post_title' => wp_strip_all_tags($advance_pet_care_post_title),
'post_content' => $advance_pet_care_post_content,
'post_status' => 'publish',
'post_type' => 'post',
);
// Insert the post into the database
$advance_pet_care_post_id = wp_insert_post($advance_pet_care_my_post);
// Check if the post was successfully created
if (!is_wp_error($advance_pet_care_post_id)) {
// Set the theme mod for the post ID
set_theme_mod('advance_pet_care_welcome_setting', $advance_pet_care_post_id);
// Fetch the image URL
$advance_pet_care_image_url = get_template_directory_uri() . '/images/image.png';
// Media sideload the image
$advance_pet_care_image_id = media_sideload_image($advance_pet_care_image_url, $advance_pet_care_post_id, null, 'id');
// Check if the image was successfully uploaded
if (!is_wp_error($advance_pet_care_image_id)) {
// Set the downloaded image as the post's featured image
set_post_thumbnail($advance_pet_care_post_id, $advance_pet_care_image_id);
} else {
// Handle the error if the image upload failed
error_log('Image upload failed: ' . $advance_pet_care_image_id->get_error_message());
}
} else {
// Handle the error if the post creation failed
error_log('Post creation failed: ' . $advance_pet_care_post_id->get_error_message());
}
}
?>