' . esc_html__('Your demo import has been completed successfully.', 'advance-education') . '
'; echo '' . esc_html__('VIEW SITE', 'advance-education') . ''; //end // Topbar Section set_theme_mod( 'advance_education_time', 'Open Hours: 8.00-18.00 Mon-Sat' ); set_theme_mod( 'advance_education_phone1', '(00) 123 456 789' ); set_theme_mod( 'advance_education_mail1', 'educationexp@example.com' ); // Slider for($advance_education_i=1;$advance_education_i<=4;$advance_education_i++){ $advance_education_slider_title = 'LOREM IPSUM DOLOR SIT AMET CONSECTETUR ADIPISCING ELIT'; $advance_education_slider_content = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida.'; // Create post object $advance_education_my_post = array( 'post_title' => wp_strip_all_tags( $advance_education_slider_title ), 'post_content' => $advance_education_slider_content, 'post_status' => 'publish', 'post_type' => 'page', ); // Insert the post into the database $advance_education_post_id = wp_insert_post( $advance_education_my_post ); if ($advance_education_post_id) { // Set the theme mod for the slider page set_theme_mod('advance_education_slider_page' . $advance_education_i, $advance_education_post_id); $advance_education_image_url = get_template_directory_uri().'/images/slider'.$advance_education_i.'.png'; $advance_education_image_id = media_sideload_image($advance_education_image_url, $advance_education_post_id, null, 'id'); if (!is_wp_error($advance_education_image_id)) { // Set the downloaded image as the post's featured image set_post_thumbnail($advance_education_post_id, $advance_education_image_id); } } } // How it works Section set_theme_mod( 'advance_education_title', 'POPULAR COURSES' ); // Post Category set_theme_mod( 'advance_education_popular_courses_category', 'category1' ); // Define post category names and post titles $advance_education_category_names = array('category1', 'category2', 'category3'); $advance_education_title_array = array( array("Courses Title 1", "Courses Title 2", "Courses Title 3"), array("Courses Title 1", "Courses Title 2", "Courses Title 3"), array("Courses Title 1", "Courses Title 2", "Courses Title 3") ); foreach ($advance_education_category_names as $advance_education_index => $advance_education_category_name) { // Create or retrieve the post category term ID $advance_education_term = term_exists($advance_education_category_name, 'category'); if ($advance_education_term === 0 || $advance_education_term === null) { // If the term does not exist, create it $advance_education_term = wp_insert_term($advance_education_category_name, 'category'); } if (is_wp_error($advance_education_term)) { error_log('Error creating category: ' . $advance_education_term->get_error_message()); continue; // Skip to the next iteration if category creation fails } for ($advance_education_i = 0; $advance_education_i < 3; $advance_education_i++) { // Create post content $advance_education_title = $advance_education_title_array[$advance_education_index][$advance_education_i]; $advance_education_content = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever.'; // Create post post object $advance_education_my_post = array( 'post_title' => wp_strip_all_tags($advance_education_title), 'post_content' => $advance_education_content, 'post_status' => 'publish', 'post_type' => 'post', // Post type set to 'post' ); // Insert the post into the database $advance_education_post_id = wp_insert_post($advance_education_my_post); if (is_wp_error($advance_education_post_id)) { error_log('Error creating post: ' . $advance_education_post_id->get_error_message()); continue; // Skip to the next post if creation fails } // Assign the category to the post wp_set_post_categories($advance_education_post_id, array((int)$advance_education_term['term_id'])); // Handle the featured image using media_sideload_image $advance_education_image_url = get_template_directory_uri() . '/images/image' . ($advance_education_i + 1) . '.png'; $advance_education_image_id = media_sideload_image($advance_education_image_url, $advance_education_post_id, null, 'id'); if (is_wp_error($advance_education_image_id)) { error_log('Error downloading image: ' . $advance_education_image_id->get_error_message()); continue; // Skip to the next post if image download fails } // Assign featured image to post set_post_thumbnail($advance_education_post_id, $advance_education_image_id); } } } ?>