set_vars( $config ); $this->init(); } /** * Set some settings * @since 1.0.0 * @param $config Our config parameters */ public function set_vars( $config ) { if( isset( $config['architect_contractor_page_slug'] ) ) { $this->architect_contractor_page_slug = esc_attr( $config['architect_contractor_page_slug'] ); } if( isset( $config['architect_contractor_page_title'] ) ) { $this->architect_contractor_page_title = esc_attr( $config['architect_contractor_page_title'] ); } if( isset( $config['steps'] ) ) { $this->config_steps = $config['steps']; } $architect_contractor_current_theme = wp_get_theme(); $this->architect_contractor_theme_title = $architect_contractor_current_theme->get( 'Name' ); $this->architect_contractor_theme_name = strtolower( preg_replace( '#[^a-zA-Z]#', '', $architect_contractor_current_theme->get( 'Name' ) ) ); $this->architect_contractor_page_slug = apply_filters( $this->architect_contractor_theme_name . '_theme_setup_wizard_architect_contractor_page_slug', $this->architect_contractor_theme_name . '-wizard' ); $this->parent_slug = apply_filters( $this->architect_contractor_theme_name . '_theme_setup_wizard_parent_slug', '' ); } /** * Hooks and filters * @since 1.0.0 */ public function init() { add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); add_action( 'admin_menu', array( $this, 'menu_page' ) ); add_action( 'wp_ajax_architect_contractor_setup_widgets', array( $this, 'architect_contractor_setup_widgets' ) ); } public function enqueue_scripts() { wp_enqueue_style( 'architect-contractor-homepage-setup-style', get_template_directory_uri() . '/inc/homepage-setup/assets/css/homepage-setup-style.css'); wp_register_script( 'architect-contractor-homepage-setup-script', get_template_directory_uri() . '/inc/homepage-setup/assets/js/homepage-setup-script.js', array( 'jquery' ), time() ); wp_localize_script( 'architect-contractor-homepage-setup-script', 'whizzie_params', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'wpnonce' => wp_create_nonce( 'whizzie_nonce' ), 'verify_text' => esc_html( 'verifying', 'architect-contractor' ) ) ); wp_enqueue_script( 'architect-contractor-homepage-setup-script' ); } public static function get_instance() { if ( ! self::$instance ) { self::$instance = new self; } return self::$instance; } /** * Make a modal screen for the wizard */ public function menu_page() { add_theme_page( esc_html( $this->architect_contractor_page_title ), esc_html( $this->architect_contractor_page_title ), 'manage_options', $this->architect_contractor_page_slug, array( $this, 'wizard_page' ) ); } /** * Make an interface for the wizard */ public function wizard_page() { $url = wp_nonce_url( add_query_arg( array( 'plugins' => 'go' ) ), 'whizzie-setup' ); $method = ''; $fields = array_keys( $_POST ); if ( false === ( $creds = request_filesystem_credentials( esc_url_raw( $url ), $method, false, false, $fields ) ) ) { return true; } if ( ! WP_Filesystem( $creds ) ) { request_filesystem_credentials( esc_url_raw( $url ), $method, true, false, $fields ); return true; } $architect_contractor_theme = wp_get_theme(); $architect_contractor_theme_title = $architect_contractor_theme->get( 'Name' ); $architect_contractor_theme_version = $architect_contractor_theme->get( 'Version' ); ?>
%s %s', esc_html( $architect_contractor_theme_title ), esc_html( '(Version :- ' . $architect_contractor_theme_version . ')' ) ); ?>

15% OFF on all WordPress themes! Use code "BNDL15OFF" at checkout. Limited time offer!' ); ?>

15% OFF' ); ?>

<?php echo esc_attr__( 'Theme Bundle Image', 'architect-contractor' ); ?>

$2795$69' ); ?>

get_steps(); echo '
    '; foreach ( $architect_contractor_steps as $architect_contractor_step ) { $class = 'step step-' . esc_attr( $architect_contractor_step['id'] ); echo '
  • '; printf( '

    %s

    ', esc_html( $architect_contractor_step['title'] ) ); $content = call_user_func( array( $this, $architect_contractor_step['view'] ) ); if ( isset( $content['summary'] ) ) { printf( '
    %s
    ', wp_kses_post( $content['summary'] ) ); } if ( isset( $content['detail'] ) ) { printf( '
    %s
    ', wp_kses_post( $content['detail'] ) ); } if ( isset( $architect_contractor_step['button_text'] ) && $architect_contractor_step['button_text'] ) { printf( '', esc_attr( $architect_contractor_step['callback'] ), esc_attr( $architect_contractor_step['id'] ), esc_html( $architect_contractor_step['button_text'] ) ); } echo '
  • '; } echo '
'; ?>
    '; echo '' . esc_html( $step_number ) . ''; echo ''; $step_number++; } ?>

WordPress Theme' ); ?>

25%
Off SHOP NOW' ); ?>

<?php echo esc_attr__( 'Theme Bundle Image', 'architect-contractor' ); ?>

25% OFF on Premium Contractor WordPress Theme Use code "NYTHEMES25" at checkout.' ); ?>

config_steps; $architect_contractor_steps = array( 'widgets' => array( 'id' => 'widgets', 'title' => __( 'Setup Home Page', 'architect-contractor' ), 'icon' => 'welcome-widgets-menus', 'view' => 'get_step_widgets', 'callback' => 'architect_contractor_install_widgets', 'button_text' => __( 'Start Home Page Setup', 'architect-contractor' ), 'can_skip' => false ), 'done' => array( 'id' => 'done', 'title' => __( 'Customize Your Site', 'architect-contractor' ), 'icon' => 'yes', 'view' => 'get_step_done', 'callback' => '' ) ); // Iterate through each step and replace with dev config values if( $architect_contractor_dev_steps ) { // Configurable elements - these are the only ones the dev can update from homepage-setup-settings.php $can_config = array( 'title', 'icon', 'button_text', 'can_skip' ); foreach( $architect_contractor_dev_steps as $architect_contractor_dev_step ) { // We can only proceed if an ID exists and matches one of our IDs if( isset( $architect_contractor_dev_step['id'] ) ) { $id = $architect_contractor_dev_step['id']; if( isset( $architect_contractor_steps[$id] ) ) { foreach( $can_config as $element ) { if( isset( $architect_contractor_dev_step[$element] ) ) { $architect_contractor_steps[$id][$element] = $architect_contractor_dev_step[$element]; } } } } } } return $architect_contractor_steps; } /** * Print the content for the widgets step * @since 1.1.0 */ public function get_step_widgets() { ?>
__('Home', 'architect-contractor'), 'menu-item-classes' => 'home', 'menu-item-url' => home_url('/'), 'menu-item-status' => 'publish' )); // About $architect_contractor_page_about = get_page_by_path('about'); if($architect_contractor_page_about){ wp_update_nav_menu_item($architect_contractor_menu_id, 0, array( 'menu-item-title' => __('About', 'architect-contractor'), 'menu-item-classes' => 'about', 'menu-item-url' => get_permalink($architect_contractor_page_about), 'menu-item-status' => 'publish' )); } // Services $architect_contractor_page_services = get_page_by_path('services'); if($architect_contractor_page_services){ wp_update_nav_menu_item($architect_contractor_menu_id, 0, array( 'menu-item-title' => __('Services', 'architect-contractor'), 'menu-item-classes' => 'services', 'menu-item-url' => get_permalink($architect_contractor_page_services), 'menu-item-status' => 'publish' )); } // Shop Page (WooCommerce) if (class_exists('WooCommerce')) { $architect_contractor_shop_page_id = wc_get_page_id('shop'); if ($architect_contractor_shop_page_id) { wp_update_nav_menu_item($architect_contractor_menu_id, 0, array( 'menu-item-title' => __('Shop', 'architect-contractor'), 'menu-item-classes' => 'shop', 'menu-item-url' => get_permalink($architect_contractor_shop_page_id), 'menu-item-status' => 'publish' )); } } // Blog $architect_contractor_page_blog = get_page_by_path('blog'); if($architect_contractor_page_blog){ wp_update_nav_menu_item($architect_contractor_menu_id, 0, array( 'menu-item-title' => __('Blog', 'architect-contractor'), 'menu-item-classes' => 'blog', 'menu-item-url' => get_permalink($architect_contractor_page_blog), 'menu-item-status' => 'publish' )); } // 404 Page $architect_contractor_notfound = get_page_by_path('404 Page'); if($architect_contractor_notfound){ wp_update_nav_menu_item($architect_contractor_menu_id, 0, array( 'menu-item-title' => __('404 Page', 'architect-contractor'), 'menu-item-classes' => '404', 'menu-item-url' => get_permalink($architect_contractor_notfound), 'menu-item-status' => 'publish' )); } if (!has_nav_menu($architect_contractor_menulocation)) { $architect_contractor_locations = get_theme_mod('nav_menu_locations'); $architect_contractor_locations[$architect_contractor_menulocation] = $architect_contractor_menu_id; set_theme_mod('nav_menu_locations', $architect_contractor_locations); } } } /** * Imports the Demo Content * @since 1.1.0 */ public function architect_contractor_setup_widgets(){ /* -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- MENUS PAGES -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-*/ // Creation of home page // $architect_contractor_home_content = ''; $architect_contractor_home_title = 'Home'; $architect_contractor_home = array( 'post_type' => 'page', 'post_title' => $architect_contractor_home_title, 'post_content' => $architect_contractor_home_content, 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'home' ); $architect_contractor_home_id = wp_insert_post($architect_contractor_home); add_post_meta( $architect_contractor_home_id, '_wp_page_template', 'frontpage.php' ); $architect_contractor_home = get_page_by_path( 'Home' ); update_option( 'page_on_front', $architect_contractor_home->ID ); update_option( 'show_on_front', 'page' ); // Creation of blog page // $architect_contractor_blog_title = 'Blog'; $architect_contractor_blog_check = get_page_by_path('blog'); if (!$architect_contractor_blog_check) { $architect_contractor_blog = array( 'post_type' => 'page', 'post_title' => $architect_contractor_blog_title, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'blog' ); $architect_contractor_blog_id = wp_insert_post($architect_contractor_blog); if (!is_wp_error($architect_contractor_blog_id)) { update_option('page_for_posts', $architect_contractor_blog_id); } } // Creation of about page // $architect_contractor_about_title = 'About'; $architect_contractor_about_content = 'What is Lorem Ipsum? 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.   Why do we use it? It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here, making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for lorem ipsum will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).   Where does it come from? 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.   Why do we use it? It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here, making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for lorem ipsum will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).   Where does it come from? 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_contractor_about_check = get_page_by_path('about'); if (!$architect_contractor_about_check) { $architect_contractor_about = array( 'post_type' => 'page', 'post_title' => $architect_contractor_about_title, 'post_content' => $architect_contractor_about_content, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'about' ); wp_insert_post($architect_contractor_about); } // Creation of services page // $architect_contractor_services_title = 'Services'; $architect_contractor_services_content = 'What is Lorem Ipsum? 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.   Why do we use it? It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here, making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for lorem ipsum will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).   Where does it come from? 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.   Why do we use it? It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using Content here, content here, making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for lorem ipsum will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).   Where does it come from? 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_contractor_services_check = get_page_by_path('services'); if (!$architect_contractor_services_check) { $architect_contractor_services = array( 'post_type' => 'page', 'post_title' => $architect_contractor_services_title, 'post_content' => $architect_contractor_services_content, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'services' ); wp_insert_post($architect_contractor_services); } // Creation of 404 page // $architect_contractor_notfound_title = '404 Page'; $architect_contractor_notfound = array( 'post_type' => 'page', 'post_title' => $architect_contractor_notfound_title, 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => '404' ); $architect_contractor_notfound_id = wp_insert_post($architect_contractor_notfound); add_post_meta($architect_contractor_notfound_id, '_wp_page_template', '404.php'); /* -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- SLIDER POST -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-*/ $architect_contractor_slider_title = array('We Build Something New & Consistent'); for($architect_contractor_i=1;$architect_contractor_i<=1;$architect_contractor_i++){ $architect_contractor_title = $architect_contractor_slider_title[$architect_contractor_i-1]; $architect_contractor_content = 'In id enim odio. Nunc aliquet diam tortor, at venenatis urna sagittis Suspendisse sodales nulla sit amet sem condimentum.'; // Create post object $architect_contractor_my_post = array( 'post_title' => wp_strip_all_tags( $architect_contractor_title ), 'post_content' => $architect_contractor_content, 'post_status' => 'publish', 'post_type' => 'post', ); // Insert the post into the database $architect_contractor_post_id = wp_insert_post( $architect_contractor_my_post ); wp_set_object_terms($architect_contractor_post_id, 'Slider', 'category', true); wp_set_object_terms($architect_contractor_post_id, 'Slider', 'post_tag', true); $architect_contractor_image_url = get_template_directory_uri().'/inc/homepage-setup/assets/homepage-setup-images/slider-img'.$architect_contractor_i.'.png'; $architect_contractor_image_name= 'slider-img'.$architect_contractor_i.'.png'; $upload_dir = wp_upload_dir(); // Set upload folder $architect_contractor_image_data = file_get_contents($architect_contractor_image_url); // Get image data $unique_file_name = wp_unique_filename( $upload_dir['path'], $architect_contractor_image_name ); $architect_contractor_filename = basename( $unique_file_name ); // Check folder permission and define file location if( wp_mkdir_p( $upload_dir['path'] ) ) { $architect_contractor_file = $upload_dir['path'] . '/' . $architect_contractor_filename; } else { $architect_contractor_file = $upload_dir['basedir'] . '/' . $architect_contractor_filename; } // Create the image file on the server // Generate unique name if ( ! function_exists( 'WP_Filesystem' ) ) { require_once( ABSPATH . 'wp-admin/includes/file.php' ); } WP_Filesystem(); global $wp_filesystem; if ( ! $wp_filesystem->put_contents( $architect_contractor_file, $architect_contractor_image_data, FS_CHMOD_FILE ) ) { wp_die( 'Error saving file!' ); } // Check image file type $wp_filetype = wp_check_filetype( $architect_contractor_filename, null ); // Set attachment data $architect_contractor_attachment = array( 'post_mime_type' => $wp_filetype['type'], 'post_title' => sanitize_file_name( $architect_contractor_filename ), 'post_content' => '', 'post_type' => 'post', 'post_status' => 'inherit' ); // Create the attachment $architect_contractor_attach_id = wp_insert_attachment( $architect_contractor_attachment, $architect_contractor_file, $architect_contractor_post_id ); // Include image.php require_once(ABSPATH . 'wp-admin/includes/image.php'); // Define attachment metadata $architect_contractor_attach_data = wp_generate_attachment_metadata( $architect_contractor_attach_id, $architect_contractor_file ); // Assign metadata to attachment wp_update_attachment_metadata( $architect_contractor_attach_id, $architect_contractor_attach_data ); // And finally assign featured image to post set_post_thumbnail( $architect_contractor_post_id, $architect_contractor_attach_id ); } /* -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- SECOND SECTION POST -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-*/ $architect_contractor_second_section_title = array('Professional Team','Total Project','Happy Clients','Years Experiance'); for($architect_contractor_i=1;$architect_contractor_i<=4;$architect_contractor_i++){ $architect_contractor_title = $architect_contractor_second_section_title[$architect_contractor_i-1]; $architect_contractor_content = 'Lorem ipsum dolor sit met elit.'; // Create post object $architect_contractor_my_post = array( 'post_title' => wp_strip_all_tags( $architect_contractor_title ), 'post_content' => $architect_contractor_content, 'post_status' => 'publish', 'post_type' => 'post', ); // Insert the post into the database $architect_contractor_post_id = wp_insert_post( $architect_contractor_my_post ); wp_set_object_terms($architect_contractor_post_id, 'Second', 'category', true); wp_set_object_terms($architect_contractor_post_id, 'Second', 'post_tag', true); $architect_contractor_image_url = get_template_directory_uri().'/inc/homepage-setup/assets/homepage-setup-images/post-img'.$architect_contractor_i.'.png'; $architect_contractor_image_name= 'post-img'.$architect_contractor_i.'.png'; $upload_dir = wp_upload_dir(); // Set upload folder $architect_contractor_image_data = file_get_contents($architect_contractor_image_url); // Get image data $unique_file_name = wp_unique_filename( $upload_dir['path'], $architect_contractor_image_name ); $architect_contractor_filename = basename( $unique_file_name ); // Check folder permission and define file location if( wp_mkdir_p( $upload_dir['path'] ) ) { $architect_contractor_file = $upload_dir['path'] . '/' . $architect_contractor_filename; } else { $architect_contractor_file = $upload_dir['basedir'] . '/' . $architect_contractor_filename; } // Create the image file on the server // Generate unique name if ( ! function_exists( 'WP_Filesystem' ) ) { require_once( ABSPATH . 'wp-admin/includes/file.php' ); } WP_Filesystem(); global $wp_filesystem; if ( ! $wp_filesystem->put_contents( $architect_contractor_file, $architect_contractor_image_data, FS_CHMOD_FILE ) ) { wp_die( 'Error saving file!' ); } // Check image file type $wp_filetype = wp_check_filetype( $architect_contractor_filename, null ); // Set attachment data $architect_contractor_attachment = array( 'post_mime_type' => $wp_filetype['type'], 'post_title' => sanitize_file_name( $architect_contractor_filename ), 'post_content' => '', 'post_type' => 'post', 'post_status' => 'inherit' ); // Create the attachment $architect_contractor_attach_id = wp_insert_attachment( $architect_contractor_attachment, $architect_contractor_file, $architect_contractor_post_id ); // Include image.php require_once(ABSPATH . 'wp-admin/includes/image.php'); // Define attachment metadata $architect_contractor_attach_data = wp_generate_attachment_metadata( $architect_contractor_attach_id, $architect_contractor_file ); // Assign metadata to attachment wp_update_attachment_metadata( $architect_contractor_attach_id, $architect_contractor_attach_data ); // And finally assign featured image to post set_post_thumbnail( $architect_contractor_post_id, $architect_contractor_attach_id ); } /* -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- THIRD SECTION POST -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-*/ $architect_contractor_third_section_title = array('Architecture Design','Building Renovation','General construction','Flooring & Roofing'); for($architect_contractor_i=1;$architect_contractor_i<=4;$architect_contractor_i++){ $architect_contractor_title = $architect_contractor_third_section_title[$architect_contractor_i-1]; $architect_contractor_content = 'Lorem ipsum dolor sit met elit.'; // Create post object $architect_contractor_my_post = array( 'post_title' => wp_strip_all_tags( $architect_contractor_title ), 'post_content' => $architect_contractor_content, 'post_status' => 'publish', 'post_type' => 'post', ); // Insert the post into the database $architect_contractor_post_id = wp_insert_post( $architect_contractor_my_post ); wp_set_object_terms($architect_contractor_post_id, 'Third', 'category', true); wp_set_object_terms($architect_contractor_post_id, 'Third', 'post_tag', true); $architect_contractor_image_url = get_template_directory_uri().'/inc/homepage-setup/assets/homepage-setup-images/post-img'.$architect_contractor_i.'.png'; $architect_contractor_image_name= 'post-img'.$architect_contractor_i.'.png'; $upload_dir = wp_upload_dir(); // Set upload folder $architect_contractor_image_data = file_get_contents($architect_contractor_image_url); // Get image data $unique_file_name = wp_unique_filename( $upload_dir['path'], $architect_contractor_image_name ); $architect_contractor_filename = basename( $unique_file_name ); // Check folder permission and define file location if( wp_mkdir_p( $upload_dir['path'] ) ) { $architect_contractor_file = $upload_dir['path'] . '/' . $architect_contractor_filename; } else { $architect_contractor_file = $upload_dir['basedir'] . '/' . $architect_contractor_filename; } // Create the image file on the server // Generate unique name if ( ! function_exists( 'WP_Filesystem' ) ) { require_once( ABSPATH . 'wp-admin/includes/file.php' ); } WP_Filesystem(); global $wp_filesystem; if ( ! $wp_filesystem->put_contents( $architect_contractor_file, $architect_contractor_image_data, FS_CHMOD_FILE ) ) { wp_die( 'Error saving file!' ); } // Check image file type $wp_filetype = wp_check_filetype( $architect_contractor_filename, null ); // Set attachment data $architect_contractor_attachment = array( 'post_mime_type' => $wp_filetype['type'], 'post_title' => sanitize_file_name( $architect_contractor_filename ), 'post_content' => '', 'post_type' => 'post', 'post_status' => 'inherit' ); // Create the attachment $architect_contractor_attach_id = wp_insert_attachment( $architect_contractor_attachment, $architect_contractor_file, $architect_contractor_post_id ); // Include image.php require_once(ABSPATH . 'wp-admin/includes/image.php'); // Define attachment metadata $architect_contractor_attach_data = wp_generate_attachment_metadata( $architect_contractor_attach_id, $architect_contractor_file ); // Assign metadata to attachment wp_update_attachment_metadata( $architect_contractor_attach_id, $architect_contractor_attach_data ); // And finally assign featured image to post set_post_thumbnail( $architect_contractor_post_id, $architect_contractor_attach_id ); } $architect_contractor_slider_count=array('150+','9k+','9k+','30+','900+','20+','130+','190+','110+'); for($architect_contractor_i=1;$architect_contractor_i<=9;$architect_contractor_i++) { set_theme_mod( 'architect_contractor_header_layout_slider_count'.$architect_contractor_i, $architect_contractor_slider_count[$architect_contractor_i-1] ); } $this->architect_contractor_customizer_nav_menu(); exit; } }