/home/lnzliplg/www/wp-content/themes/law-firm-attorney/inc/whizzie.php
<?php 
if (isset($_GET['import-demo']) && $_GET['import-demo'] == true) {

    // ------- Create Nav Menu --------
$lawyer_hub_menuname = 'Main Menus';
$lawyer_hub_bpmenulocation = 'primary-menu';
$lawyer_hub_menu_exists = wp_get_nav_menu_object($lawyer_hub_menuname);

if (!$lawyer_hub_menu_exists) {
    $lawyer_hub_menu_id = wp_create_nav_menu($lawyer_hub_menuname);

    // Create Home Page
    $lawyer_hub_home_title = 'Home';
    $lawyer_hub_home = array(
        'post_type' => 'page',
        'post_title' => $lawyer_hub_home_title,
        'post_content' => '',
        'post_status' => 'publish',
        'post_author' => 1,
        'post_slug' => 'home'
    );
    $lawyer_hub_home_id = wp_insert_post($lawyer_hub_home);

    // Assign Home Page Template
    add_post_meta($lawyer_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', $lawyer_hub_home_id);
    update_option('show_on_front', 'page');

    // Add Home Page to Menu
    wp_update_nav_menu_item($lawyer_hub_menu_id, 0, array(
        'menu-item-title' => __('Home', 'law-firm-attorney'),
        'menu-item-classes' => 'home',
        'menu-item-url' => home_url('/'),
        'menu-item-status' => 'publish',
        'menu-item-object-id' => $lawyer_hub_home_id,
        'menu-item-object' => 'page',
        'menu-item-type' => 'post_type'
    ));

    // Create About Us Page with Dummy Content
    $lawyer_hub_about_title = 'About Us';
    $lawyer_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...<br>

             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.<br> 

                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.<br> 

                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.';
    $lawyer_hub_about = array(
        'post_type' => 'page',
        'post_title' => $lawyer_hub_about_title,
        'post_content' => $lawyer_hub_about_content,
        'post_status' => 'publish',
        'post_author' => 1,
        'post_slug' => 'about-us'
    );
    $lawyer_hub_about_id = wp_insert_post($lawyer_hub_about);

    // Add About Us Page to Menu
    wp_update_nav_menu_item($lawyer_hub_menu_id, 0, array(
        'menu-item-title' => __('About Us', 'law-firm-attorney'),
        'menu-item-classes' => 'about-us',
        'menu-item-url' => home_url('/about-us/'),
        'menu-item-status' => 'publish',
        'menu-item-object-id' => $lawyer_hub_about_id,
        'menu-item-object' => 'page',
        'menu-item-type' => 'post_type'
    ));

    // Create Services Page with Dummy Content
    $lawyer_hub_services_title = 'Services';
    $lawyer_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...<br>

             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.<br> 

                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.<br> 

                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.';
    $lawyer_hub_services = array(
        'post_type' => 'page',
        'post_title' => $lawyer_hub_services_title,
        'post_content' => $lawyer_hub_services_content,
        'post_status' => 'publish',
        'post_author' => 1,
        'post_slug' => 'services'
    );
    $lawyer_hub_services_id = wp_insert_post($lawyer_hub_services);

    // Add Services Page to Menu
    wp_update_nav_menu_item($lawyer_hub_menu_id, 0, array(
        'menu-item-title' => __('Services', 'law-firm-attorney'),
        'menu-item-classes' => 'services',
        'menu-item-url' => home_url('/services/'),
        'menu-item-status' => 'publish',
        'menu-item-object-id' => $lawyer_hub_services_id,
        'menu-item-object' => 'page',
        'menu-item-type' => 'post_type'
    ));

    // Create Pages Page with Dummy Content
    $lawyer_hub_pages_title = 'Pages';
    $lawyer_hub_pages_content = '<h2>Our Pages</h2>
    <p>Explore all the pages we have on our website. Find information about our services, company, and more.</p>';
    $lawyer_hub_pages = array(
        'post_type' => 'page',
        'post_title' => $lawyer_hub_pages_title,
        'post_content' => $lawyer_hub_pages_content,
        'post_status' => 'publish',
        'post_author' => 1,
        'post_slug' => 'pages'
    );
    $lawyer_hub_pages_id = wp_insert_post($lawyer_hub_pages);

    // Add Pages Page to Menu
    wp_update_nav_menu_item($lawyer_hub_menu_id, 0, array(
        'menu-item-title' => __('Pages', 'law-firm-attorney'),
        'menu-item-classes' => 'pages',
        'menu-item-url' => home_url('/pages/'),
        'menu-item-status' => 'publish',
        'menu-item-object-id' => $lawyer_hub_pages_id,
        'menu-item-object' => 'page',
        'menu-item-type' => 'post_type'
    ));

    // Create Contact Page with Dummy Content
    $lawyer_hub_contact_title = 'Contact';
    $lawyer_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...<br>

             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.<br> 

                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.<br> 

                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.';
    $lawyer_hub_contact = array(
        'post_type' => 'page',
        'post_title' => $lawyer_hub_contact_title,
        'post_content' => $lawyer_hub_contact_content,
        'post_status' => 'publish',
        'post_author' => 1,
        'post_slug' => 'contact'
    );
    $lawyer_hub_contact_id = wp_insert_post($lawyer_hub_contact);

    // Add Contact Page to Menu
    wp_update_nav_menu_item($lawyer_hub_menu_id, 0, array(
        'menu-item-title' => __('Contact', 'law-firm-attorney'),
        'menu-item-classes' => 'contact',
        'menu-item-url' => home_url('/contact/'),
        'menu-item-status' => 'publish',
        'menu-item-object-id' => $lawyer_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($lawyer_hub_bpmenulocation)) {
        $locations = get_theme_mod('nav_menu_locations'); // Use 'nav_menu_locations' to get locations array
        if (empty($locations)) {
            $locations = array();
        }
        $locations[$lawyer_hub_bpmenulocation] = $lawyer_hub_menu_id;
        set_theme_mod('nav_menu_locations', $locations);
    }
}

        //---Header--//
        set_theme_mod('lawyer_hub_phone_number_text', '800.567.1234');
        set_theme_mod('lawyer_hub_email_text', 'EMAIL');
        set_theme_mod('lawyer_hub_email_address', 'lawyeranency@gmail.com');
        set_theme_mod('lawyer_hub_button_text', 'REQUEST A FREE QUOTE');
        set_theme_mod('lawyer_hub_button_link', '#');

        // Slider Section
        set_theme_mod('lawyer_hub_slider_arrows', true);
        set_theme_mod('law_firm_attorney_slider_top', 'FQUAL JUSTIC UNDER LAW');

        for ($i = 1; $i <= 4; $i++) {
            $lawyer_hub_title = 'WE ARE HERE TO PROTECT ANY KIND OF VIOLENCE';
            $lawyer_hub_content = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry';

            // Create post object
            $my_post = array(
                'post_title'    => wp_strip_all_tags($lawyer_hub_title),
                'post_content'  => $lawyer_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('lawyer_hub_slider_page' . $i, $post_id);

                $image_url = get_stylesheet_directory_uri() . '/assets/images/slider.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);
                }
            }
        }

        // About Section
        set_theme_mod('lawyer_hub_about_section_show_hide', true);
        set_theme_mod('lawyer_hub_about_title', 'ABOUT US');

        // Create About page and set the featured image
        $lawyer_hub_abt_title = 'Lorem Ipsum is simply dummy text of the printing and typesetting';
        $lawyer_hub_abt_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. It was popularised in the 1960s 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.';

        $my_post = array(
            'post_title'    => wp_strip_all_tags($lawyer_hub_abt_title),
            'post_content'  => $lawyer_hub_abt_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 About page
            set_theme_mod('lawyer_hub_about_page', $post_id);

            // Sideload image and set as the featured image
            $image_url = get_template_directory_uri() . '/assets/images/about-img.png';
            $image_id = media_sideload_image($image_url, $post_id, null, 'id');

            if (!is_wp_error($image_id)) {
                set_post_thumbnail($post_id, $image_id);
            }
        }

        // Set theme mods for demo import.
        set_theme_mod('law_firm_attorney_services_show_hide', 'true');
        set_theme_mod('law_firm_attorney_services_title', 'OUR SERVICES');
        set_theme_mod('law_firm_attorney_services_text', 'Lorem Ipsum is simply dummy text of the printing and typesetting');
        set_theme_mod('law_firm_attorney_services_btn_text', 'VIEW ALL SERVICES');
        set_theme_mod('law_firm_attorney_services_btn_url', '#');
        set_theme_mod('law_firm_attorney_services_section_category', 'postcategory1');

        // Define post category names and post titles
        $law_firm_attorney_category_names = array('postcategory1');
        $law_firm_attorney_title_array = array(
            array("Family Law", "Family Law", "Family Law") // Make sure you have three unique titles for each iteration
        );

        $law_firm_attorney_content = 'Lorem Ipsum has been the industrys standard dummy text ever since';

        // Loop through categories
        foreach ($law_firm_attorney_category_names as $law_firm_attorney_index => $law_firm_attorney_category_name) {

            // Check if the category exists or create it
            $law_firm_attorney_term = term_exists($law_firm_attorney_category_name, 'category');
            if (!$law_firm_attorney_term) {
                $law_firm_attorney_term = wp_insert_term($law_firm_attorney_category_name, 'category');
                if (is_wp_error($law_firm_attorney_term)) {
                    error_log('Error creating category: ' . $law_firm_attorney_term->get_error_message());
                    continue; // Skip to next category if there's an error
                }
            }
            
            // Get the term ID after creation or fetching
            $law_firm_attorney_term_id = (is_array($law_firm_attorney_term)) ? $law_firm_attorney_term['term_id'] : $law_firm_attorney_term;

            // Create 3 posts for each category
            for ($law_firm_attorney_i = 0; $law_firm_attorney_i < 3; $law_firm_attorney_i++) {
                // Ensure that the title array exists for the category
                if (isset($law_firm_attorney_title_array[$law_firm_attorney_index][$law_firm_attorney_i])) {
                    $law_firm_attorney_title = $law_firm_attorney_title_array[$law_firm_attorney_index][$law_firm_attorney_i];
                } else {
                    error_log('Title not found for post ' . $law_firm_attorney_i);
                    continue;
                }

                // Create the post object
                $law_firm_attorney_my_post = array(
                    'post_title'    => wp_strip_all_tags($law_firm_attorney_title),
                    'post_content'  => $law_firm_attorney_content,
                    'post_status'   => 'publish',
                    'post_type'     => 'post',
                );

                // Insert the post into the database
                $law_firm_attorney_post_id = wp_insert_post($law_firm_attorney_my_post);
                if (is_wp_error($law_firm_attorney_post_id)) {
                    error_log('Error creating post: ' . $law_firm_attorney_post_id->get_error_message());
                    continue; // Skip to the next post if creation fails
                }

                // Assign the category to the post
                wp_set_post_categories($law_firm_attorney_post_id, array((int)$law_firm_attorney_term_id));

                // Handle featured image using media_sideload_image
                $law_firm_attorney_image_url = get_stylesheet_directory_uri() . '/assets/images/post-img' . ($law_firm_attorney_i + 1) . '.png';
                $law_firm_attorney_image_id = media_sideload_image($law_firm_attorney_image_url, $law_firm_attorney_post_id, null, 'id');

                // Check if the image download was successful
                if (is_wp_error($law_firm_attorney_image_id)) {
                    error_log('Error downloading image: ' . $law_firm_attorney_image_id->get_error_message());
                    continue; // Skip to the next post if image download fails
                }

                // Set the featured image for the post
                set_post_thumbnail($law_firm_attorney_post_id, $law_firm_attorney_image_id);
            }
        }

}
?>