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['board_gamespage_slug'] ) ) { $this->board_gamespage_slug = esc_attr( $config['board_gamespage_slug'] ); } if( isset( $config['board_gamespage_title'] ) ) { $this->board_gamespage_title = esc_attr( $config['board_gamespage_title'] ); } if( isset( $config['steps'] ) ) { $this->config_steps = $config['steps']; } $this->board_gamesplugin_path = trailingslashit( dirname( __FILE__ ) ); $relative_url = str_replace( get_template_directory(), '', $this->board_gamesplugin_path ); $this->board_gamesplugin_url = trailingslashit( get_template_directory_uri() . $relative_url ); $board_gamescurrent_theme = wp_get_theme(); $this->board_gamestheme_title = $board_gamescurrent_theme->get( 'Name' ); $this->board_gamestheme_name = strtolower( preg_replace( '#[^a-zA-Z]#', '', $board_gamescurrent_theme->get( 'Name' ) ) ); $this->board_gamespage_slug = apply_filters( $this->board_gamestheme_name . '_theme_setup_wizard_board_gamespage_slug', $this->board_gamestheme_name . '-wizard' ); $this->parent_slug = apply_filters( $this->board_gamestheme_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_board_gamessetup_widgets', array( $this, 'board_gamessetup_widgets' ) ); } public function enqueue_scripts() { wp_enqueue_style( 'board-games-homepage-setup-style', get_template_directory_uri() . '/inc/homepage-setup/assets/css/homepage-setup-style.css'); wp_register_script( 'board-games-homepage-setup-script', get_template_directory_uri() . '/inc/homepage-setup/assets/js/homepage-setup-script.js', array( 'jquery' ), time() ); wp_localize_script( 'board-games-homepage-setup-script', 'whizzie_params', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'wpnonce' => wp_create_nonce( 'whizzie_nonce' ), 'verify_text' => esc_html( 'verifying', 'board-games' ) ) ); wp_enqueue_script( 'board-games-homepage-setup-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->board_gamestheme_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->board_gamestheme_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->board_gamespage_title ), esc_html( $this->board_gamespage_title ), 'manage_options', $this->board_gamespage_slug, array( $this, 'wizard_page' ) ); } /** * Make an interface for the wizard */ public function wizard_page() { tgmpa_load_bulk_installer(); if ( ! class_exists( 'TGM_Plugin_Activation' ) || ! isset( $GLOBALS['tgmpa'] ) ) { die( esc_html__( 'Failed to find TGM', 'board-games' ) ); } $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; } $board_gamestheme = wp_get_theme(); $board_gamestheme_title = $board_gamestheme->get( 'Name' ); $board_gamestheme_version = $board_gamestheme->get( 'Version' ); ?>
%s %s', esc_html( $board_gamestheme_title ), esc_html( '(Version :- ' . $board_gamestheme_version . ')' ) ); ?>

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

15% OFF' ); ?>

<?php echo esc_attr__( 'Theme Bundle Image', 'board-games' ); ?>

$2795$69' ); ?>

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

    %s

    ', esc_html( $board_gamesstep['title'] ) ); $content = call_user_func( array( $this, $board_gamesstep['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( $board_gamesstep['button_text'] ) && $board_gamesstep['button_text'] ) { printf( '', esc_attr( $board_gamesstep['callback'] ), esc_attr( $board_gamesstep['id'] ), esc_html( $board_gamesstep['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', 'board-games' ); ?>

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

config_steps; $board_gamessteps = array( 'plugins' => array( 'id' => 'plugins', 'title' => __( 'Install and Activate Essential Plugins', 'board-games' ), 'icon' => 'admin-plugins', 'view' => 'get_step_plugins', 'callback' => 'install_plugins', 'button_text' => __( 'Install Plugins', 'board-games' ), 'can_skip' => true ), 'widgets' => array( 'id' => 'widgets', 'title' => __( 'Setup Home Page', 'board-games' ), 'icon' => 'welcome-widgets-menus', 'view' => 'get_step_widgets', 'callback' => 'board_gamesinstall_widgets', 'button_text' => __( 'Start Home Page Setup', 'board-games' ), 'can_skip' => false ), 'done' => array( 'id' => 'done', 'title' => __( 'Customize Your Site', 'board-games' ), 'icon' => 'yes', 'view' => 'get_step_done', 'callback' => '' ) ); // Iterate through each step and replace with dev config values if( $board_gamesdev_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( $board_gamesdev_steps as $board_gamesdev_step ) { // We can only proceed if an ID exists and matches one of our IDs if( isset( $board_gamesdev_step['id'] ) ) { $id = $board_gamesdev_step['id']; if( isset( $board_gamessteps[$id] ) ) { foreach( $can_config as $element ) { if( isset( $board_gamesdev_step[$element] ) ) { $board_gamessteps[$id][$element] = $board_gamesdev_step[$element]; } } } } } } return $board_gamessteps; } /** * Get the content for the plugins step * @return $content Array */ public function get_step_plugins() { $plugins = $this->get_plugins(); $content = array(); // Add plugin name and type at the top $content['detail'] = '
'; $content['detail'] .= '

Plugin

'; $content['detail'] .= '

Type

'; $content['detail'] .= '
'; // The detail element is initially hidden from the user $content['detail'] .= ''; return $content; } /** * Print the content for the widgets step * @since 1.1.0 */ public function get_step_widgets() { ?>
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; } /** * Get the widgets.wie file from the /content folder * @return Mixed Either the file or false * @since 1.1.0 */ public function has_widget_file() { if( file_exists( $this->widget_file_url ) ) { return true; } return false; } public function setup_plugins() { if ( ! check_ajax_referer( 'whizzie_nonce', 'wpnonce' ) || empty( $_POST['slug'] ) ) { wp_send_json_error( array( 'error' => 1, 'message' => esc_html__( 'No Slug Found','board-games' ) ) ); } $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','board-games' ), ); 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','board-games' ), ); 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','board-games' ), ); 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','board-games' ) ) ); } exit; } public function board_gamescustomizer_nav_menu() { /* -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- Board Games Primary Menu -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-*/ $board_gamesthemename = 'Board Games'; $board_gamesmenuname = $board_gamesthemename . ' Primary Menu'; $board_gamesmenulocation = 'board-games-primary-menu'; $board_gamesmenu_exists = wp_get_nav_menu_object($board_gamesmenuname); if (!$board_gamesmenu_exists) { $board_gamesmenu_id = wp_create_nav_menu($board_gamesmenuname); // Home wp_update_nav_menu_item($board_gamesmenu_id, 0, array( 'menu-item-title' => __('Home', 'board-games'), 'menu-item-classes' => 'home', 'menu-item-url' => home_url('/'), 'menu-item-status' => 'publish' )); // Products $board_gamespage_about = get_page_by_path('birthday'); if($board_gamespage_about){ wp_update_nav_menu_item($board_gamesmenu_id, 0, array( 'menu-item-title' => __('Products', 'board-games'), 'menu-item-classes' => 'birthday', 'menu-item-url' => get_permalink($board_gamespage_about), 'menu-item-status' => 'publish' )); } // features $board_gamespages_services = get_page_by_path('features'); if($board_gamespages_services){ wp_update_nav_menu_item($board_gamesmenu_id, 0, array( 'menu-item-title' => __('Features', 'board-games'), 'menu-item-classes' => 'features', 'menu-item-url' => get_permalink($board_gamespages_services), 'menu-item-status' => 'publish' )); } // pricing $board_gamespages = get_page_by_path('pricing'); if($board_gamespages){ wp_update_nav_menu_item($board_gamesmenu_id, 0, array( 'menu-item-title' => __('Pricing', 'board-games'), 'menu-item-classes' => 'pricing', 'menu-item-url' => get_permalink($board_gamespages), 'menu-item-status' => 'publish' )); } // Support $board_gamespage_blog = get_page_by_path('support'); if($board_gamespage_blog){ wp_update_nav_menu_item($board_gamesmenu_id, 0, array( 'menu-item-title' => __('Support', 'board-games'), 'menu-item-classes' => 'blog', 'menu-item-url' => get_permalink($board_gamespage_blog), 'menu-item-status' => 'publish' )); } if (!has_nav_menu($board_gamesmenulocation)) { $board_gameslocations = get_theme_mod('nav_menu_locations'); $board_gameslocations[$board_gamesmenulocation] = $board_gamesmenu_id; set_theme_mod('nav_menu_locations', $board_gameslocations); } } } /** * Imports the Demo Content * @since 1.1.0 */ public function board_gamessetup_widgets(){ /* -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- MENUS PAGES -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-*/ // Creation of home page // $board_gameshome_content = ''; $board_gameshome_title = 'Home'; $board_gameshome = array( 'post_type' => 'page', 'post_title' => $board_gameshome_title, 'post_content' => $board_gameshome_content, 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'home' ); $board_gameshome_id = wp_insert_post($board_gameshome); add_post_meta( $board_gameshome_id, '_wp_page_template', 'frontpage.php' ); $board_gameshome = get_page_by_path( 'Home' ); update_option( 'page_on_front', $board_gameshome->ID ); update_option( 'show_on_front', 'page' ); // Creation of blog page // $board_gamesblog_title = 'Blog'; $board_gamesblog_check = get_page_by_path('blog'); if (!$board_gamesblog_check) { $board_gamesblog = array( 'post_type' => 'page', 'post_title' => $board_gamesblog_title, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'blog' ); $board_gamesblog_id = wp_insert_post($board_gamesblog); if (!is_wp_error($board_gamesblog_id)) { update_option('page_for_posts', $board_gamesblog_id); } } // Creation of about page // $board_gamesabout_title = 'About'; $board_gamesabout_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.'; $board_gamesabout_check = get_page_by_path('about'); if (!$board_gamesabout_check) { $board_gamesabout = array( 'post_type' => 'page', 'post_title' => $board_gamesabout_title, 'post_content' => $board_gamesabout_content, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'about' ); wp_insert_post($board_gamesabout); } // Creation of services page // $board_gamesservices_title = 'Contact'; $board_gamesservices_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.'; $board_gamesservices_check = get_page_by_path('services'); if (!$board_gamesservices_check) { $board_gamesservices = array( 'post_type' => 'page', 'post_title' => $board_gamesservices_title, 'post_content' => $board_gamesservices_content, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'services' ); wp_insert_post($board_gamesservices); } // Creation of pricing page // $board_gamespricing_title = 'Pricing'; $board_gamespricing_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.'; $board_gamespricing_check = get_page_by_path('pricing'); if (!$board_gamespricing_check) { $board_gamespricing = array( 'post_type' => 'page', 'post_title' => $board_gamespricing_title, 'post_content' => $board_gamespricing_content, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'pricing' ); wp_insert_post($board_gamespricing); } // Creation of support page // $board_gamessupport_title = 'Support'; $board_gamessupport_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.'; $board_gamessupport_check = get_page_by_path('support'); if (!$board_gamessupport_check) { $board_gamessupport = array( 'post_type' => 'page', 'post_title' => $board_gamessupport_title, 'post_content' => $board_gamessupport_content, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'support' ); wp_insert_post($board_gamessupport); } // Creation of features page // $board_gamesfeatures_title = 'Features'; $board_gamesfeatures_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.'; $board_gamesfeatures_check = get_page_by_path('features'); if (!$board_gamesfeatures_check) { $board_gamesfeatures = array( 'post_type' => 'page', 'post_title' => $board_gamesfeatures_title, 'post_content' => $board_gamesfeatures_content, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'features' ); wp_insert_post($board_gamesfeatures); } // Creation of services page // $board_gamesbirthday_title = 'Products'; $board_gamesbirthday_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.'; $board_gamesbirthday_check = get_page_by_path('birthday'); if (!$board_gamesbirthday_check) { $board_gamesbirthday = array( 'post_type' => 'page', 'post_title' => $board_gamesbirthday_title, 'post_content' => $board_gamesbirthday_content, 'post_status' => 'publish', 'post_author' => 1, 'post_name' => 'birthday' ); wp_insert_post($board_gamesbirthday); } // Creation of Pages // $board_gamesnotfound_title = 'Pages'; $board_gamesnotfound = array( 'post_type' => 'pages', 'post_title' => $board_gamesnotfound_title, 'post_status' => 'publish', 'post_author' => 1, 'post_slug' => 'pages' ); $board_gamesnotfound_id = wp_insert_post($board_gamesnotfound); add_post_meta($board_gamesnotfound_id, '_wp_page_template', 'pages.php'); /* -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- PRODUCTS -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-*/ $board_gamesuncategorized_term = get_term_by('name', 'Uncategorized', 'product_cat'); if ($board_gamesuncategorized_term) { wp_delete_term($board_gamesuncategorized_term->term_id, 'product_cat'); } $board_gamesproduct_category= array( 'Brand Name' => array( 'Board Game Name Here Blue Board1', 'Board Game Name Here Blue Board2', 'Board Game Name Here Blue Board3', 'Board Game Name Here Blue Board4' ) ); $board_gamesi = 1; foreach ( $board_gamesproduct_category as $board_gamesproduct_cats => $board_gamesproducts_name ) { // Insert porduct cats Start $board_gamescontent = 'Lorem ipsum dolor sit amet'; $board_gamesparent_category = wp_insert_term( $board_gamesproduct_cats, // the term 'product_cat', // the taxonomy array( 'description'=> $board_gamescontent, 'slug' => 'product_cat'.$board_gamesi )); $board_gamesimage_url = get_template_directory_uri().'/inc/homepage-setup/assets/homepage-setup-images/Borad-Game-Name-Here-Blue-Board.png'; $board_gamesimage_name= 'Borad-Game-Name-Here-Blue-Board.png'; $upload_dir = wp_upload_dir(); // Set upload folder $board_gamesimage_data= file_get_contents($board_gamesimage_url); // Get image data $board_gamesunique_file_name = wp_unique_filename( $upload_dir['path'], $board_gamesimage_name ); // Generate unique name $board_gamesfilename= basename( $board_gamesunique_file_name ); // Create image file name // Check folder permission and define file location if( wp_mkdir_p( $upload_dir['path'] ) ) { $file = $upload_dir['path'] . '/' . $board_gamesfilename; } else { $file = $upload_dir['basedir'] . '/' . $board_gamesfilename; } // 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, $board_gamesimage_data, FS_CHMOD_FILE ) ) { wp_die( 'Error saving file!' ); } // Check image file type $wp_filetype = wp_check_filetype( $board_gamesfilename, null ); // Set attachment data $board_gamesattachment = array( 'post_mime_type' => $wp_filetype['type'], 'post_title' => sanitize_file_name( $board_gamesfilename ), 'post_content' => '', 'post_type' => 'product', 'post_status' => 'inherit' ); // Create the attachment $board_gamesattach_id = wp_insert_attachment( $board_gamesattachment, $file, $post_id ); // Include image.php require_once(ABSPATH . 'wp-admin/includes/image.php'); // Define attachment metadata $board_gamesattach_data = wp_generate_attachment_metadata( $board_gamesattach_id, $file ); // Assign metadata to attachment wp_update_attachment_metadata( $board_gamesattach_id, $board_gamesattach_data ); update_woocommerce_term_meta( $board_gamesparent_category['term_id'], 'thumbnail_id', $board_gamesattach_id ); // create Product START foreach ( $board_gamesproducts_name as $key => $board_gamesproduct_title ) { $board_gamescontent = 'Te obtinuit ut adepto satis somno.'; // Create post object $my_post = array( 'post_title' => wp_strip_all_tags( $board_gamesproduct_title ), 'post_content' => $board_gamescontent, 'post_status' => 'publish', 'post_type' => 'product', ); // Insert the post into the database $post_id = wp_insert_post($my_post); wp_set_object_terms( $post_id, 'product_cat' . $board_gamesi, 'product_cat', true ); update_post_meta($post_id, '_price', '457'); // Now replace meta w/ new updated value array $board_gamesimage_url = get_template_directory_uri().'/inc/homepage-setup/assets/homepage-setup-images/'.str_replace( " ", "-", $board_gamesproduct_title).'.png'; echo $board_gamesimage_url . "
"; $board_gamesimage_name = $board_gamesproduct_title.'.png'; $upload_dir = wp_upload_dir(); // Set upload folder $board_gamesimage_data = file_get_contents(esc_url($board_gamesimage_url)); // Get image data $board_gamesunique_file_name = wp_unique_filename($upload_dir['path'], $board_gamesimage_name); // Generate unique name $board_gamesfilename = basename($board_gamesunique_file_name); // Create image file name // Check folder permission and define file location if (wp_mkdir_p($upload_dir['path'])) { $file = $upload_dir['path'].'/'.$board_gamesfilename; } else { $file = $upload_dir['basedir'].'/'.$board_gamesfilename; } // 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, $board_gamesimage_data, FS_CHMOD_FILE ) ) { wp_die( 'Error saving file!' ); } // Check image file type $wp_filetype = wp_check_filetype($board_gamesfilename, null); // Set attachment data $board_gamesattachment = array( 'post_mime_type' => $wp_filetype['type'], 'post_title' => sanitize_file_name($board_gamesfilename), 'post_type' => 'product', 'post_status' => 'inherit', ); // Create the attachment $board_gamesattach_id = wp_insert_attachment($board_gamesattachment, $file, $post_id); // Include image.php require_once (ABSPATH.'wp-admin/includes/image.php'); // Define attachment metadata $board_gamesattach_data = wp_generate_attachment_metadata($board_gamesattach_id, $file); // Assign metadata to attachment wp_update_attachment_metadata($board_gamesattach_id, $board_gamesattach_data); // And finally assign featured image to post set_post_thumbnail($post_id, $board_gamesattach_id); } // Create product END ++$board_gamesi; } $this->board_gamescustomizer_nav_menu(); exit; } }