' . esc_html__('Your demo import has been completed successfully.', 'architect-architecture') . '';
echo '' . esc_html__('View Site', 'architect-architecture') . '';
}
//POST and update the customizer and other related data of POLITICAL CAMPAIGN
if (isset($_POST['submit'])) {
// Check if ibtana visual editor is installed and activated
if (!is_plugin_active('ibtana-visual-editor/plugin.php')) {
// Install the plugin if it doesn't exist
$architect_architecture_plugin_slug = 'ibtana-visual-editor';
$architect_architecture_plugin_file = 'ibtana-visual-editor/plugin.php';
// Check if plugin is installed
$architect_architecture_installed_plugins = get_plugins();
if (!isset($architect_architecture_installed_plugins[$architect_architecture_plugin_file])) {
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');
// Install the plugin
$architect_architecture_upgrader = new Plugin_Upgrader();
$architect_architecture_upgrader->install('https://downloads.wordpress.org/plugin/ibtana-visual-editor.latest-stable.zip');
}
// Activate the plugin
activate_plugin($architect_architecture_plugin_file);
}
// ------- Create Nav Menu --------
$architect_architecture_menuname = 'Main Menus';
$architect_architecture_bpmenulocation = 'primary';
$architect_architecture_menu_exists = wp_get_nav_menu_object($architect_architecture_menuname);
if (!$architect_architecture_menu_exists) {
$architect_architecture_menu_id = wp_create_nav_menu($architect_architecture_menuname);
// Create Home Page
$architect_architecture_home_title = 'Home';
$architect_architecture_home = array(
'post_type' => 'page',
'post_title' => $architect_architecture_home_title,
'post_content' => '',
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'home'
);
$architect_architecture_home_id = wp_insert_post($architect_architecture_home);
// Assign Home Page Template
add_post_meta($architect_architecture_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', $architect_architecture_home_id);
update_option('show_on_front', 'page');
// Add Home Page to Menu
wp_update_nav_menu_item($architect_architecture_menu_id, 0, array(
'menu-item-title' => __('Home', 'architect-architecture'),
'menu-item-classes' => 'home',
'menu-item-url' => home_url('/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $architect_architecture_home_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create Pages Page with Dummy Content
$architect_architecture_pages_title = 'Pages';
$architect_architecture_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.';
$architect_architecture_pages = array(
'post_type' => 'page',
'post_title' => $architect_architecture_pages_title,
'post_content' => $architect_architecture_pages_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'pages'
);
$architect_architecture_pages_id = wp_insert_post($architect_architecture_pages);
// Add Pages Page to Menu
wp_update_nav_menu_item($architect_architecture_menu_id, 0, array(
'menu-item-title' => __('Pages', 'architect-architecture'),
'menu-item-classes' => 'pages',
'menu-item-url' => home_url('/pages/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $architect_architecture_pages_id,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type'
));
// Create About Us Page with Dummy Content
$architect_architecture_about_title = 'About Us';
$architect_architecture_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.';
$architect_architecture_about = array(
'post_type' => 'page',
'post_title' => $architect_architecture_about_title,
'post_content' => $architect_architecture_about_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'about-us'
);
$architect_architecture_about_id = wp_insert_post($architect_architecture_about);
// Add About Us Page to Menu
wp_update_nav_menu_item($architect_architecture_menu_id, 0, array(
'menu-item-title' => __('About Us', 'architect-architecture'),
'menu-item-classes' => 'about-us',
'menu-item-url' => home_url('/about-us/'),
'menu-item-status' => 'publish',
'menu-item-object-id' => $architect_architecture_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($architect_architecture_bpmenulocation)) {
$locations = get_theme_mod('nav_menu_locations'); // Use 'nav_menu_locations' to get locations array
if (empty($locations)) {
$locations = array();
}
$locations[$architect_architecture_bpmenulocation] = $architect_architecture_menu_id;
set_theme_mod('nav_menu_locations', $locations);
}
}
// Set the demo import completion flag
update_option('architect_architecture_demo_import_completed', true);
// Display success message and "View Site" button
echo '' . esc_html__('Your demo import has been completed successfully.', 'architect-architecture') . '
';
echo '' . esc_html__('View Site', 'architect-architecture') . '';
//end
// Top Bar //
set_theme_mod( 'architect_architecture_topfaq_text', 'FAQ' );
set_theme_mod( 'architect_architecture_faq_link', '#' );
set_theme_mod( 'architect_architecture_contact_text', 'CONTACT' );
set_theme_mod( 'architect_architecture_contact_link', '#' );
set_theme_mod( 'architect_architecture_topbar_phone_number', '+1 123 456 78900' );
set_theme_mod( 'architect_architecture_topbar_timing', 'MON - FRI: 8:00 AM - 5:00 PM' );
set_theme_mod( 'architect_architecture_topbar_btn_text', 'Get Quote' );
set_theme_mod( 'architect_architecture_topbar_btn_link', '#' );
// slider section start //
set_theme_mod( 'architect_architecture_slider_small_title ', 'Best Architecture Company In India' );
set_theme_mod( 'architect_architecture_slider_button_text', 'Read More' );
set_theme_mod( 'architect_architecture_topbar_btn_link', '#' );
for($architect_architecture_i=1;$architect_architecture_i<=3;$architect_architecture_i++){
$architect_architecture_slider_title = 'WE MAKE IT HAPPEN';
$architect_architecture_slider_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.';
// Create post object
$my_post = array(
'post_title' => wp_strip_all_tags( $architect_architecture_slider_title ),
'post_content' => $architect_architecture_slider_content,
'post_status' => 'publish',
'post_type' => 'page',
);
// Insert the post into the database
$architect_architecture_post_id = wp_insert_post( $my_post );
if ($architect_architecture_post_id) {
// Set the theme mod for the slider page
set_theme_mod('architect_architecture_slider_page' . $architect_architecture_i, $architect_architecture_post_id);
$architect_architecture_image_url = get_template_directory_uri().'/assets/images/slider'.$architect_architecture_i.'.png';
$architect_architecture_image_id = media_sideload_image($architect_architecture_image_url, $architect_architecture_post_id, null, 'id');
if (!is_wp_error($architect_architecture_image_id)) {
// Set the downloaded image as the post's featured image
set_post_thumbnail($architect_architecture_post_id, $architect_architecture_image_id);
}
}
}
// Portfolio Section //
set_theme_mod( 'architect_architecture_portfolio_heading', 'Our Portfolio' );
set_theme_mod( 'architect_architecture_portfolio_text', 'Lorem Ipsum has been the industry standard dummy text ever since the 1500s' );
set_theme_mod('architect_architecture_portfolio_category', 'servicecategory1');
// Define post category names and post titles
$architect_architecture_category_names = array('servicecategory1', 'servicecategory2');
$architect_architecture_title_array = array(
array("High Tech Architect", "High Tech Architect", "High Tech Architect"),
array("High Tech Architect", "High Tech Architect", "High Tech Architect")
);
foreach ($architect_architecture_category_names as $architect_architecture_index => $architect_architecture_category_name) {
// Create or retrieve the post category term ID
$architect_architecture_term = term_exists($architect_architecture_category_name, 'category');
if ($architect_architecture_term === 0 || $architect_architecture_term === null) {
// If the term does not exist, create it
$architect_architecture_term = wp_insert_term($architect_architecture_category_name, 'category');
}
if (is_wp_error($architect_architecture_term)) {
error_log('Error creating category: ' . $architect_architecture_term->get_error_message());
continue; // Skip to the next iteration if category creation fails
}
for ($architect_architecture_i = 0; $architect_architecture_i < 3; $architect_architecture_i++) {
// Create post content
$architect_architecture_title = $architect_architecture_title_array[$architect_architecture_index][$architect_architecture_i];
$architect_architecture_content = 'Lorem Ipsum has been the industry\'s 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. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s.';
// Create post post object
$architect_architecture_my_post = array(
'post_title' => wp_strip_all_tags($architect_architecture_title),
'post_content' => $architect_architecture_content,
'post_status' => 'publish',
'post_type' => 'post', // Post type set to 'post'
);
// Insert the post into the database
$architect_architecture_post_id = wp_insert_post($architect_architecture_my_post);
if (is_wp_error($architect_architecture_post_id)) {
error_log('Error creating post: ' . $architect_architecture_post_id->get_error_message());
continue; // Skip to the next post if creation fails
}
// Assign the category to the post
wp_set_post_categories($architect_architecture_post_id, array((int)$architect_architecture_term['term_id']));
// Handle the featured image using media_sideload_image
$architect_architecture_image_url = get_template_directory_uri() . '/assets/images/services' . ($architect_architecture_i + 1) . '.png';
$architect_architecture_image_id = media_sideload_image($architect_architecture_image_url, $architect_architecture_post_id, null, 'id');
if (is_wp_error($architect_architecture_image_id)) {
error_log('Error downloading image: ' . $architect_architecture_image_id->get_error_message());
continue; // Skip to the next post if image download fails
}
// Assign featured image to post
set_post_thumbnail($architect_architecture_post_id, $architect_architecture_image_id);
}
}
//Copyright Text
set_theme_mod( 'architect_architecture_footer_text', 'By VWThemes' );
}
?>