set_vars( $config ); $this->init(); } /** * Set some settings * @since 1.0.0 * @param $config Our config parameters */ public function set_vars( $config ) { // require_once trailingslashit( WHIZZIE_DIR ) . 'tgm/class-tgm-plugin-activation.php'; require_once trailingslashit( WHIZZIE_DIR ) . 'tgm/tgm.php'; if( isset( $config['page_slug'] ) ) { $this->page_slug = esc_attr( $config['page_slug'] ); } if( isset( $config['page_title'] ) ) { $this->page_title = esc_attr( $config['page_title'] ); } if( isset( $config['steps'] ) ) { $this->config_steps = $config['steps']; } $this->plugin_path = trailingslashit( dirname( __FILE__ ) ); $relative_url = str_replace( get_template_directory(), '', $this->plugin_path ); $this->plugin_url = trailingslashit( get_template_directory_uri() . $relative_url ); $current_theme = wp_get_theme(); $this->theme_title = $current_theme->get( 'Name' ); $this->theme_name = strtolower( preg_replace( '#[^a-zA-Z]#', '', $current_theme->get( 'Name' ) ) ); $this->page_slug = apply_filters( $this->theme_name . '_theme_setup_wizard_page_slug', $this->theme_name . '-wizard' ); $this->parent_slug = apply_filters( $this->theme_name . '_theme_setup_wizard_parent_slug', '' ); } /** * Hooks and filters * @since 1.0.0 */ public function init() { if ( class_exists( 'TGM_Plugin_Activation' ) && isset( $GLOBALS['tgmpa'] ) ) { add_action( 'init', array( $this, 'get_tgmpa_instance' ), 30 ); add_action( 'init', array( $this, 'set_tgmpa_url' ), 40 ); } add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); add_action( 'admin_menu', array( $this, 'menu_page' ) ); add_action( 'admin_init', array( $this, 'get_plugins' ), 30 ); add_filter( 'tgmpa_load', array( $this, 'tgmpa_load' ), 10, 1 ); add_action( 'wp_ajax_setup_plugins', array( $this, 'setup_plugins' ) ); add_action( 'wp_ajax_setup_widgets', array( $this, 'setup_widgets' ) ); } public function enqueue_scripts() { wp_enqueue_style( 'theme-wizard-style', get_template_directory_uri() . '/theme-wizard/assets/css/theme-wizard-style.css'); wp_register_script( 'theme-wizard-script', get_template_directory_uri() . '/theme-wizard/assets/js/theme-wizard-script.js', array( 'jquery' ), ); wp_localize_script( 'theme-wizard-script', 'bridal_dresses_whizzie_params', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'verify_text' => esc_html( 'verifying', 'bridal-dresses' ) ) ); wp_enqueue_script( 'theme-wizard-script' ); } public static function get_instance() { if ( ! self::$instance ) { self::$instance = new self; } return self::$instance; } public function tgmpa_load( $status ) { return is_admin() || current_user_can( 'install_themes' ); } /** * Get configured TGMPA instance * * @access public * @since 1.1.2*/ public function get_tgmpa_instance() { $this->tgmpa_instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); } /** * Update $tgmpa_menu_slug and $tgmpa_parent_slug from TGMPA instance * * @access public * @since 1.1.2 */ public function set_tgmpa_url() { $this->tgmpa_menu_slug = ( property_exists( $this->tgmpa_instance, 'menu' ) ) ? $this->tgmpa_instance->menu : $this->tgmpa_menu_slug; $this->tgmpa_menu_slug = apply_filters( $this->theme_name . '_theme_setup_wizard_tgmpa_menu_slug', $this->tgmpa_menu_slug ); $tgmpa_parent_slug = ( property_exists( $this->tgmpa_instance, 'parent_slug' ) && $this->tgmpa_instance->parent_slug !== 'themes.php' ) ? 'admin.php' : 'themes.php'; $this->tgmpa_url = apply_filters( $this->theme_name . '_theme_setup_wizard_tgmpa_url', $tgmpa_parent_slug . '?page=' . $this->tgmpa_menu_slug ); } /*** Make a modal screen for the wizard ***/ public function menu_page() { add_theme_page( esc_html( $this->page_title ), esc_html( $this->page_title ), 'manage_options', $this->page_slug, array( $this, 'bridal_dresses_setup_wizard' ) ); } /*** Make an interface for the wizard ***/ public function wizard_page() { tgmpa_load_bulk_installer(); // install plugins with TGM. if ( ! class_exists( 'TGM_Plugin_Activation' ) || ! isset( $GLOBALS['tgmpa'] ) ) { die( 'Failed to find TGM' ); } $url = wp_nonce_url( add_query_arg( array( 'plugins' => 'go' ) ), 'whizzie-setup' ); // copied from TGM $method = ''; // Leave blank so WP_Filesystem can populate it as necessary. $fields = array_keys( $_POST ); // Extra fields to pass to WP_Filesystem. if ( false === ( $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, $fields ) ) ) { return true; // Stop the normal page form from displaying, credential request form will be shown. } // Now we have some credentials, setup WP_Filesystem. if ( ! WP_Filesystem( $creds ) ) { // Our credentials were no good, ask the user for them again. request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, $fields ); return true; } /* If we arrive here, we have the filesystem */ ?>
'; // The wizard is a list with only one item visible at a time $steps = $this->get_steps(); echo '
', esc_attr( $step['callback'] ), esc_attr( $step['id'] ), esc_html( $step['button_text'] ) ); ?> '; } echo ''; ?>

home_url(), 'theme_text_domain' => wp_get_theme()->get( 'TextDomain' ) ]; $body = wp_json_encode( $body ); $options = [ 'body' => $body, 'sslverify' => false, 'headers' => [ 'Content-Type' => 'application/json', ] ]; //custom function about theme customizer $return = add_query_arg( array()) ; $theme = wp_get_theme( 'bridal-dresses' ); ?>
wizard_page(); ?>
config_steps; $steps = array( 'intro' => array( 'id' => 'intro', 'title' => __( 'Welcome to ', 'bridal-dresses' ) . $this->theme_title, 'icon' => 'dashboard', 'view' => 'get_step_intro', // Callback for content 'callback' => 'do_next_step', // Callback for JS 'button_text' => __( 'Start Now', 'bridal-dresses' ), 'can_skip' => false // Show a skip button? ), 'plugins' => array( 'id' => 'plugins', 'title' => __( 'Plugins', 'bridal-dresses' ), 'icon' => 'admin-plugins', 'view' => 'get_step_plugins', 'callback' => 'install_plugins', 'button_text' => __( 'Install Plugins', 'bridal-dresses' ), 'can_skip' => true ), 'widgets' => array( 'id' => 'widgets', 'title' => __( 'Demo Importer', 'bridal-dresses' ), 'icon' => 'welcome-widgets-menus', 'view' => 'get_step_widgets', 'callback' => 'install_widgets', 'button_text' => __( 'Import Demo', 'bridal-dresses' ), 'can_skip' => true ), 'done' => array( 'id' => 'done', 'title' => __( 'All Done', 'bridal-dresses' ), 'icon' => 'yes', 'view' => 'get_step_done', 'callback' => '' ) ); // Iterate through each step and replace with dev config values if( $dev_steps ) { // Configurable elements - these are the only ones the dev can update from config.php $can_config = array( 'title', 'icon', 'button_text', 'can_skip' ); foreach( $dev_steps as $dev_step ) { // We can only proceed if an ID exists and matches one of our IDs if( isset( $dev_step['id'] ) ) { $id = $dev_step['id']; if( isset( $steps[$id] ) ) { foreach( $can_config as $element ) { if( isset( $dev_step[$element] ) ) { $steps[$id][$element] = $dev_step[$element]; } } } } } } return $steps; } /*** Display the content for the intro step ***/ public function get_step_intro() { ?>

get_plugins(); $content = array(); ?>

'; // Add each plugin into a list foreach( $plugins['all'] as $slug=>$plugin ) { $content['detail'] .= '
  • ' . esc_html( $plugin['name'] ) . ''; $keys = array(); if ( isset( $plugins['install'][ $slug ] ) ) { $keys[] = 'Installation'; } if ( isset( $plugins['update'][ $slug ] ) ) { $keys[] = 'Update'; } if ( isset( $plugins['activate'][ $slug ] ) ) { $keys[] = 'Activation'; } $content['detail'] .= implode( ' and ', $keys ) . ' required'; $content['detail'] .= '
  • '; } $content['detail'] .= ''; return $content; } /*** Display the content for the widgets step ***/ public function get_step_widgets() { ?>

    1. > Pages >> Add New','bridal-dresses'); ?>

    1. > Appearance >> Menu','bridal-dresses'); ?>

    1. > Appearance >> Widgets','bridal-dresses'); ?>
    array(), 'install' => array(), 'update' => array(), 'activate' => array() ); foreach( $instance->plugins as $slug=>$plugin ) { if( $instance->is_plugin_active( $slug ) && false === $instance->does_plugin_have_update( $slug ) ) { // Plugin is installed and up to date continue; } else { $plugins['all'][$slug] = $plugin; if( ! $instance->is_plugin_installed( $slug ) ) { $plugins['install'][$slug] = $plugin; } else { if( false !== $instance->does_plugin_have_update( $slug ) ) { $plugins['update'][$slug] = $plugin; } if( $instance->can_plugin_activate( $slug ) ) { $plugins['activate'][$slug] = $plugin; } } } } return $plugins; } public function setup_plugins() { $json = array(); // send back some json we use to hit up TGM $plugins = $this->get_plugins(); // what are we doing with this plugin? foreach ( $plugins['activate'] as $slug => $plugin ) { if ( $_POST['slug'] == $slug ) { $json = array( 'url' => admin_url( $this->tgmpa_url ), 'plugin' => array( $slug ), 'tgmpa-page' => $this->tgmpa_menu_slug, 'plugin_status' => 'all', '_wpnonce' => wp_create_nonce( 'bulk-plugins' ), 'action' => 'tgmpa-bulk-activate', 'action2' => - 1, 'message' => esc_html__( 'Activating Plugin','bridal-dresses' ), ); break; } } foreach ( $plugins['update'] as $slug => $plugin ) { if ( $_POST['slug'] == $slug ) { $json = array( 'url' => admin_url( $this->tgmpa_url ), 'plugin' => array( $slug ), 'tgmpa-page' => $this->tgmpa_menu_slug, 'plugin_status' => 'all', '_wpnonce' => wp_create_nonce( 'bulk-plugins' ), 'action' => 'tgmpa-bulk-update', 'action2' => - 1, 'message' => esc_html__( 'Updating Plugin','bridal-dresses' ), ); break; } } foreach ( $plugins['install'] as $slug => $plugin ) { if ( $_POST['slug'] == $slug ) { $json = array( 'url' => admin_url( $this->tgmpa_url ), 'plugin' => array( $slug ), 'tgmpa-page' => $this->tgmpa_menu_slug, 'plugin_status' => 'all', '_wpnonce' => wp_create_nonce( 'bulk-plugins' ), 'action' => 'tgmpa-bulk-install', 'action2' => - 1, 'message' => esc_html__( 'Installing Plugin','bridal-dresses' ), ); break; } } if ( $json ) { $json['hash'] = md5( serialize( $json ) ); // used for checking if duplicates happen, move to next plugin wp_send_json( $json ); } else { wp_send_json( array( 'done' => 1, 'message' => esc_html__( 'Success','bridal-dresses' ) ) ); } exit; } /***------------------------------------------------- Imports the Demo Content* @since 1.1.0 ----------------------------------------------****/ // ------------- MENUS ----------------- // public function bridal_dresses_customizer_primary_menu(){ // ------- Create Primary Menu -------- $bridal_dresses_menuname = $bridal_dresses_themename . 'Primary Menu'; $bridal_dresses_bpmenulocation = 'primary'; $bridal_dresses_menu_exists = wp_get_nav_menu_object( $bridal_dresses_menuname ); if( !$bridal_dresses_menu_exists){ $bridal_dresses_menu_id = wp_create_nav_menu($bridal_dresses_menuname); $bridal_dresses_parent_item = wp_update_nav_menu_item($bridal_dresses_menu_id, 0, array( 'menu-item-title' => __('Home','bridal-dresses'), 'menu-item-classes' => 'home', 'menu-item-url' => home_url( '/' ), 'menu-item-status' => 'publish')); wp_update_nav_menu_item($bridal_dresses_menu_id, 0, array( 'menu-item-title' => __('WOMEN','bridal-dresses'), 'menu-item-classes' => 'women', 'menu-item-url' => get_permalink(get_page_by_title('Women')), 'menu-item-status' => 'publish')); wp_update_nav_menu_item($bridal_dresses_menu_id, 0, array( 'menu-item-title' => __('Shop', 'bridal-dresses'), 'menu-item-classes' => 'shop', 'menu-item-url' => wc_get_page_permalink('shop'), // Function to get the shop page URL 'menu-item-status' => 'publish' )); wp_update_nav_menu_item($bridal_dresses_menu_id, 0, array( 'menu-item-title' => __('Blogs','bridal-dresses'), 'menu-item-classes' => 'blog', 'menu-item-url' => get_permalink(get_page_by_title('Blogs')), 'menu-item-status' => 'publish')); wp_update_nav_menu_item($bridal_dresses_menu_id, 0, array( 'menu-item-title' => __('Contact','bridal-dresses'), 'menu-item-classes' => 'contact', 'menu-item-url' => get_permalink(get_page_by_title('Contact')), 'menu-item-status' => 'publish')); if( !has_nav_menu( $bridal_dresses_bpmenulocation ) ){ $locations = get_theme_mod('nav_menu_locations'); $locations[$bridal_dresses_bpmenulocation] = $bridal_dresses_menu_id; set_theme_mod( 'nav_menu_locations', $locations ); } } } public function bridal_dresses_customizer_socail_nav_menu() { // ------- Create Social Menu -------- $bridal_dresses_menuname = $bridal_dresses_themename . 'Social Menu'; $bridal_dresses_bpmenulocation = 'social'; $bridal_dresses_menu_exists = wp_get_nav_menu_object( $bridal_dresses_menuname ); if( !$bridal_dresses_menu_exists){ $bridal_dresses_menu_id = wp_create_nav_menu($bridal_dresses_menuname); wp_update_nav_menu_item( $bridal_dresses_menu_id, 0, array( 'menu-item-title' => __( 'Facebook', 'bridal-dresses' ), 'menu-item-url' => 'https://www.facebook.com', 'menu-item-status' => 'publish', ) ); wp_update_nav_menu_item( $bridal_dresses_menu_id, 0, array( 'menu-item-title' => __( 'Twitter', 'bridal-dresses' ), 'menu-item-url' => 'https://www.twitter.com', 'menu-item-status' => 'publish', ) ); wp_update_nav_menu_item( $bridal_dresses_menu_id, 0, array( 'menu-item-title' => __( 'Instagram', 'bridal-dresses' ), 'menu-item-url' => 'https://www.instagram.com', 'menu-item-status' => 'publish', ) ); wp_update_nav_menu_item( $bridal_dresses_menu_id, 0, array( 'menu-item-title' => __( 'Youtube', 'bridal-dresses' ), 'menu-item-url' => 'https://www.youtube.com', 'menu-item-status' => 'publish', ) ); if( !has_nav_menu( $bridal_dresses_bpmenulocation ) ){ $locations = get_theme_mod('nav_menu_locations'); $locations[$bridal_dresses_bpmenulocation] = $bridal_dresses_menu_id; set_theme_mod( 'nav_menu_locations', $locations ); } } } public function setup_widgets() { // Create a front page and assigned the template $bridal_dresses_home_title = 'Home'; $bridal_dresses_home_check = get_page_by_title($bridal_dresses_home_title); $bridal_dresses_home = array( 'post_type' => 'page', 'post_title' => $bridal_dresses_home_title, 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'home' ); $bridal_dresses_home_id = wp_insert_post($bridal_dresses_home); //Set the static front page $bridal_dresses_home = get_page_by_title( 'Home' ); update_option( 'page_on_front', $bridal_dresses_home->ID ); update_option( 'show_on_front', 'page' ); // Create a posts page and assigned the template $bridal_dresses_blog_title = 'Blogs'; $bridal_dresses_blog = get_page_by_title($bridal_dresses_blog_title); if (!$bridal_dresses_blog) { $bridal_dresses_blog = array( 'post_type' => 'page', 'post_title' => $bridal_dresses_blog_title, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'blog' ); $bridal_dresses_blog_id = wp_insert_post($bridal_dresses_blog); if (is_wp_error($bridal_dresses_blog_id)) { // Handle error } } else { $bridal_dresses_blog_id = $bridal_dresses_blog->ID; } // Set the posts page update_option('page_for_posts', $bridal_dresses_blog_id); // Create a Women and assigned the template $bridal_dresses_gallery_title = 'Women'; $bridal_dresses_gallery_check = get_page_by_title($bridal_dresses_gallery_title); $bridal_dresses_gallery = array( 'post_type' => 'page', 'post_title' => $bridal_dresses_gallery_title, 'post_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. 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.

    ', 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'blog' ); $bridal_dresses_gallery_id = wp_insert_post($bridal_dresses_gallery); // Create a Contact and assigned the template $bridal_dresses_contact_title = 'Contact'; $bridal_dresses_contact_check = get_page_by_title($bridal_dresses_contact_title); $bridal_dresses_contact = array( 'post_type' => 'page', 'post_title' => $bridal_dresses_contact_title, 'post_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. 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.

    ', 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'blog' ); $bridal_dresses_contact_id = wp_insert_post($bridal_dresses_contact); /*----------------------------------------- Header Button --------------------------------------------------*/ set_theme_mod( 'bridal_dresses_discount_topbar_text','Free shipping on US orders $50+ & Free exchanges'); /*----------------------------------------- Product --------------------------------------------------*/ set_theme_mod( 'bridal_dresses_trending_product_heading', 'BIG SALES'); set_theme_mod( 'bridal_dresses_services_number', '5'); $title = array('Mermaid','Sheath','Ball Gown','A-Line', 'Accessories'); for ($i=0; $i <=5 ; $i++) { set_theme_mod( 'bridal_dresses_services_text' .$i, $title[$i-1]); } $bridal_dresses_product_category = array( 'Mermaid' => array( 'Africa Vestido midi a rayas cont1', 'Africa Vestido midi a rayas cont2', 'Africa Vestido midi a rayas cont3', 'Africa Vestido midi a rayas cont4', ), 'Sheath' => array( 'Africa Vestido midi a rayas cont1', 'Africa Vestido midi a rayas cont2', 'Africa Vestido midi a rayas cont3', 'Africa Vestido midi a rayas cont4', ), 'Ball Gown' => array( 'Africa Vestido midi a rayas cont5', 'Africa Vestido midi a rayas cont6', 'Africa Vestido midi a rayas cont7', 'Africa Vestido midi a rayas cont8', ), 'A-Line' => array( 'Africa Vestido midi a rayas cont5', 'Africa Vestido midi a rayas cont6', 'Africa Vestido midi a rayas cont7', 'Africa Vestido midi a rayas cont8', ), 'Accessories' => array( 'Africa Vestido midi a rayas cont5', 'Africa Vestido midi a rayas cont6', 'Africa Vestido midi a rayas cont7', 'Africa Vestido midi a rayas cont8', ), ); $k = 1; foreach ( $bridal_dresses_product_category as $bridal_dresses_product_cats => $bridal_dresses_products_name ) { // Insert product categories $content = 'This is a sample product category'; $parent_category = wp_insert_term( $bridal_dresses_product_cats, // the term 'product_cat', // the taxonomy array( 'description' => $content, 'slug' => str_replace(' ', '-', strtolower($bridal_dresses_product_cats)) ) ); // Ensure the category is created properly if (is_wp_error($parent_category)) { error_log('Category creation error: ' . $parent_category->get_error_message()); continue; // Skip the rest of the loop if there's an error } $term_id = $parent_category['term_id']; // Get the term ID // Set the product category in theme mod set_theme_mod('bridal_dresses_trending_product_category' . $k, $term_id); // Create products within the category foreach ($bridal_dresses_products_name as $bridal_dresses_product_title) { $content = 'Lorem Ipsum description for ' . $bridal_dresses_product_title; // Create product $my_post = array( 'post_title' => wp_strip_all_tags($bridal_dresses_product_title), 'post_content' => $content, 'post_status' => 'publish', 'post_type' => 'product', ); // Insert the post into the database $post_id = wp_insert_post($my_post); // Set the product category wp_set_object_terms($post_id, $term_id, 'product_cat'); // Set product prices update_post_meta($post_id, '_regular_price', '39.99'); update_post_meta($post_id, '_sale_price', '29.99'); update_post_meta($post_id, '_price', '29.99'); // Set current price (sale price is applied) // Handle product image upload $image_url = get_template_directory_uri() . '/resource/img/' . str_replace(' ', '-', strtolower($bridal_dresses_product_title)) . '.png'; $image_name = $bridal_dresses_product_title . '.png'; $upload_dir = wp_upload_dir(); // Set upload folder $image_data = file_get_contents(esc_url($image_url)); // Generate unique name $unique_file_name = wp_unique_filename($upload_dir['path'], $image_name); $filename = basename($unique_file_name); // Check folder permission and define file location if (wp_mkdir_p($upload_dir['path'])) { $file = $upload_dir['path'] . '/' . $filename; } else { $file = $upload_dir['basedir'] . '/' . $filename; } // Create the image file on the server if ( ! function_exists( 'WP_Filesystem' ) ) { require_once( ABSPATH . 'wp-admin/includes/file.php' ); } WP_Filesystem(); global $wp_filesystem; if ( ! $wp_filesystem->put_contents( $file, $image_data, FS_CHMOD_FILE ) ) { wp_die( 'Error saving file!' ); } // Check image file type $wp_filetype = wp_check_filetype($filename, null); // Set attachment data $attachment = array( 'post_mime_type' => $wp_filetype['type'], 'post_title' => sanitize_file_name($filename), 'post_type' => 'product', 'post_status' => 'inherit', ); // Create the attachment $attach_id = wp_insert_attachment($attachment, $file, $post_id); // Include image.php require_once(ABSPATH . 'wp-admin/includes/image.php'); // Define attachment metadata $attach_data = wp_generate_attachment_metadata($attach_id, $file); // Assign metadata to attachment wp_update_attachment_metadata($attach_id, $attach_data); // Assign featured image to post set_post_thumbnail($post_id, $attach_id); } $k++; } // ------------------------------------------ Blogs for Sections -------------------------------------- // ---------------------------------------- Slider --------------------------------------------------- // // Create categories if not already created $bridal_dresses_category_slider = wp_create_category('Slider'); // Array of categories to assign to each set of posts $bridal_dresses_categories = array($bridal_dresses_category_slider); // Loop to create posts for ($i = 1; $i <= 3; $i++) { set_theme_mod('bridal_dresses_banner_button_label_'.$i,'Shop Now'); $title = array( 'Curated Elegance For Every Occasion', 'Unveil the Beauty of Timeless Bridal Fashion', 'Where Dreams Meet Dresses', ); // Determine category and post index to use for title $category_index = ($i <= 3) ? 0 : 1; // First 3 for Slider, next 3 for Blog $post_title = $title[$i - 1]; // Adjust for zero-based index in title array // Create post object $my_post = array( 'post_title' => wp_strip_all_tags($post_title), 'post_content' => 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus.', 'post_status' => 'publish', 'post_type' => 'post', 'post_category' => array($bridal_dresses_categories[$category_index]), // Assign Slider to first 3, Blog to next 3 ); // Insert the post into the database $post_id = wp_insert_post($my_post); set_theme_mod('bridal_dresses_banner_slider_content_post_'.$i, $post_id); // Determine the category and set image URLs based on category if ($category_index === 0) { // Slider category $bridal_dresses_image_name = "slider" . $i . ".png"; $bridal_dresses_image_url = get_template_directory_uri() . '/resource/img/' . $bridal_dresses_image_name; } $bridal_dresses_upload_dir = wp_upload_dir(); $bridal_dresses_image_data = file_get_contents($bridal_dresses_image_url); $bridal_dresses_unique_file_name = wp_unique_filename($bridal_dresses_upload_dir['path'], $bridal_dresses_image_name); $filename = basename($bridal_dresses_unique_file_name); if (wp_mkdir_p($bridal_dresses_upload_dir['path'])) { $file = $bridal_dresses_upload_dir['path'] . '/' . $filename; } else { $file = $bridal_dresses_upload_dir['basedir'] . '/' . $filename; } if ( ! function_exists( 'WP_Filesystem' ) ) { require_once( ABSPATH . 'wp-admin/includes/file.php' ); } WP_Filesystem(); global $wp_filesystem; if ( ! $wp_filesystem->put_contents( $file, $bridal_dresses_image_data, FS_CHMOD_FILE ) ) { wp_die( 'Error saving file!' ); } $wp_filetype = wp_check_filetype($filename, null); $attachment = array( 'post_mime_type' => $wp_filetype['type'], 'post_title' => sanitize_file_name($filename), 'post_content' => '', 'post_status' => 'inherit' ); $bridal_dresses_attach_id = wp_insert_attachment($attachment, $file, $post_id); require_once(ABSPATH . 'wp-admin/includes/image.php'); $bridal_dresses_attach_data = wp_generate_attachment_metadata($bridal_dresses_attach_id, $file); wp_update_attachment_metadata($bridal_dresses_attach_id, $bridal_dresses_attach_data); set_post_thumbnail($post_id, $bridal_dresses_attach_id); } // ---------------------------------------- Slider --------------------------------------------------- // for($i=1; $i<=3; $i++) { set_theme_mod('bridal_dresses_banner_button_label_'.$i,'Shop now'); set_theme_mod('bridal_dresses_banner_button_link_'.$i,'#'); } set_theme_mod('bridal_dresses_enable_service_section',true); set_theme_mod('bridal_dresses_enable_banner_section',true); set_theme_mod('bridal_dresses_enable_topbar',true); // ---------------------------------------- Footer section --------------------------------------------------- // set_theme_mod('bridal_dresses_footer_background_color_setting','#000000'); // ---------------------------------------- Related post_tag --------------------------------------------------- // set_theme_mod('bridal_dresses_post_related_post_label','Related Posts'); set_theme_mod('bridal_dresses_related_posts_count','3'); $this->bridal_dresses_customizer_primary_menu(); $this->bridal_dresses_customizer_socail_nav_menu (); update_option('is-demo-imported', true); } }