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';
// require_once trailingslashit( WHIZZIE_DIR ) . 'widgets/class-ti-widget-importer.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', '' );
}
public function redirect_to_wizard() {
update_option( 'dismissed-get_started', false );
}
/*
* Hooks and filters
* @since 1.0.0
*/
public function init() {
add_action( 'after_switch_theme', array( $this, 'redirect_to_wizard' ) );
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($hook) {
wp_enqueue_style( 'importer-style', get_template_directory_uri() . '/core/includes/importer/assets/css/importer-style.css');
wp_register_script( 'importer-script', get_template_directory_uri() . '/core/includes/importer/assets/js/importer-script.js', array( 'jquery' ), time() );
wp_localize_script(
'importer-script',
'arcade_games_whizzie_params',
array(
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'wpnonce' => wp_create_nonce( 'whizzie_nonce' ),
'verify_text' => esc_html( 'verifying', 'arcade-games' )
)
);
wp_enqueue_script( 'importer-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, 'arcade_games_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 */ ?>
%s', esc_html($this->page_title));
echo '
';
// The wizard is a list with only one item visible at a time
$steps = $this->get_steps();
echo '';
?>
false, 'msg' => 'Something Went Wrong!');
wp_send_json($response);
exit;
} else {
$response_body = wp_remote_retrieve_body( $response );
$response_body = json_decode($response_body);
if ( $response_body->is_suspended == 1 ) {
} else {
}
if ($response_body->status === false) {
$response = array('status' => false, 'msg' => $response_body->msg);
wp_send_json($response);
exit;
} else {
$response = array('status' => true, 'msg' => 'Theme Activated Successfully!');
wp_send_json($response);
exit;
}
}
}
public function arcade_games_setup_wizard() {
?>
config_steps;
$steps = array(
'intro' => array(
'id' => 'intro',
'title' => __( 'Welcome to ', 'arcade-games' ) . $this->theme_title,
'icon' => 'dashboard',
'view' => 'get_step_intro', // Callback for content
'callback' => 'do_next_step', // Callback for JS
'button_text' => __( 'Start Now', 'arcade-games' ),
'can_skip' => false // Show a skip button?
),
'plugins' => array(
'id' => 'plugins',
'title' => __( 'Plugins', 'arcade-games' ),
'icon' => 'admin-plugins',
'view' => 'get_step_plugins',
'callback' => 'install_plugins',
'button_text' => __( 'Install Plugins', 'arcade-games' ),
'can_skip' => true
),
'widgets' => array(
'id' => 'widgets',
'title' => __( 'Demo Importer', 'arcade-games' ),
'icon' => 'welcome-widgets-menus',
'view' => 'get_step_widgets',
'callback' => 'install_widgets',
'button_text' => __( 'Import Demo', 'arcade-games' ),
'can_skip' => true
),
'done' => array(
'id' => 'done',
'title' => __( 'All Done', 'arcade-games' ),
'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;
}
/**
* Print the content for the intro step
*/
public function get_step_intro() { ?>
get_plugins();
$content = array(); ?>
';
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;
}
function moveArrayPosition(&$array, $key, $new_position) {
if (!array_key_exists($key, $array)) {
return $array;
}
$item = $array[$key];
unset($array[$key]);
$result = [];
$position_added = false;
foreach ($array as $current_key => $current_value) {
if (!$position_added && $new_position === count($result)) {
$result[$key] = $item;
$position_added = true;
}
$result[$current_key] = $current_value;
}
if (!$position_added) {
$result[$key] = $item;
}
$array = $result;
return $array;
}
/**
* 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 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','arcade-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','arcade-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','arcade-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','arcade-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','arcade-games' ) ) );
}
exit;
}
public static function get_page_id_by_title($pagename){
$args = array(
'post_type' => 'page',
'posts_per_page' => 1,
'post_status' => 'publish',
'title' => $pagename
);
$query = new WP_Query( $args );
$page_id = '1';
if (isset($query->post->ID)) {
$page_id = $query->post->ID;
}
return $page_id;
}
public function create_theme_nav_menu() {
// ------- Create Nav Menu --------
$menuname = 'Primary Menu';
$bpmenulocation = 'main-menu';
$menu_exists = wp_get_nav_menu_object($menuname);
if (!$menu_exists) {
$menu_id = wp_create_nav_menu($menuname);
// Create or fetch 'Blogs' page
$blog_page = get_page_by_title('Blogs');
if (!$blog_page) {
$blog_page_id = wp_insert_post(array(
'post_title' => 'Blogs',
'post_type' => 'page',
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'blogs',
'post_content' => 'This is the blog listing page.'
));
} else {
$blog_page_id = $blog_page->ID;
}
// Set the Posts page
update_option('page_for_posts', $blog_page_id);
// Add Home
wp_update_nav_menu_item($menu_id, 0, array(
'menu-item-title' => __('Home','arcade-games'),
'menu-item-classes' => 'home-page',
'menu-item-url' => home_url('/'),
'menu-item-status' => 'publish',
));
// Add Blogs (Posts Page)
if ($blog_page_id) {
wp_update_nav_menu_item($menu_id, 0, array(
'menu-item-title' => __('Blogs', 'arcade-games'),
'menu-item-classes' => 'blogs',
'menu-item-object' => 'page',
'menu-item-object-id' => $blog_page_id,
'menu-item-type' => 'post_type',
'menu-item-status' => 'publish',
));
}
// Add other pages
wp_update_nav_menu_item($menu_id, 0, array(
'menu-item-title' => __('Pages','arcade-games'),
'menu-item-classes' => 'pages',
'menu-item-url' => get_permalink(Whizzie::get_page_id_by_title('Pages')),
'menu-item-status' => 'publish',
));
wp_update_nav_menu_item($menu_id, 0, array(
'menu-item-title' => __('About Us','arcade-games'),
'menu-item-classes' => 'about-us',
'menu-item-url' => get_permalink(Whizzie::get_page_id_by_title('About Us')),
'menu-item-status' => 'publish',
));
wp_update_nav_menu_item($menu_id, 0, array(
'menu-item-title' => __('Contact Us','arcade-games'),
'menu-item-classes' => 'contact-us',
'menu-item-url' => get_permalink(Whizzie::get_page_id_by_title('Contact Us')),
'menu-item-status' => 'publish',
));
// Assign menu to location
if (!has_nav_menu($bpmenulocation)) {
$locations = get_theme_mod('nav_menu_locations');
$locations[$bpmenulocation] = $menu_id;
set_theme_mod('nav_menu_locations', $locations);
}
}
}
public function setup_widgets() {
$arcade_games_home_id='';
$arcade_games_home_content = '';
$arcade_games_home_title = 'Home';
$arcade_games_home = array(
'post_type' => 'page',
'post_title' => $arcade_games_home_title,
'post_content' => $arcade_games_home_content,
'post_status' => 'publish',
'post_author' => 1,
'post_slug' => 'home'
);
$arcade_games_home_id = wp_insert_post($arcade_games_home);
add_post_meta( $arcade_games_home_id, '_wp_page_template', 'frontpage.php' );
update_option( 'page_on_front', $arcade_games_home_id );
update_option( 'show_on_front', 'page' );
// Create a Posts Page
$arcade_games_blog_title = 'Blogs';
$arcade_games_blog_check = get_page_id_by_title($arcade_games_blog_title);
if ($arcade_games_blog_check == 1) {
$arcade_games_blog = array(
'post_type' => 'page',
'post_title' => $arcade_games_blog_title,
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'blogs',
'post_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, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."',
);
$arcade_games_blog_id = wp_insert_post($arcade_games_blog);
}
// Create a Posts Page
$arcade_games_blog_title = 'Pages';
$arcade_games_blog_check = get_page_id_by_title($arcade_games_blog_title);
if ($arcade_games_blog_check == 1) {
$arcade_games_pages = array(
'post_type' => 'page',
'post_title' => $arcade_games_blog_title,
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'pages',
'post_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, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."',
);
$arcade_games_blog_id = wp_insert_post($arcade_games_pages);
}
// Create a Posts Page
$arcade_games_blog_title = 'About Us';
$arcade_games_blog_check = get_page_id_by_title($arcade_games_blog_title);
if ($arcade_games_blog_check == 1) {
$arcade_games_about_us = array(
'post_type' => 'page',
'post_title' => $arcade_games_blog_title,
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'about-us',
'post_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, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."',
);
$arcade_games_blog_id = wp_insert_post($arcade_games_about_us);
}
// Create a Posts Page
$arcade_games_blog_title = 'Contact Us';
$arcade_games_blog_check = get_page_id_by_title($arcade_games_blog_title);
if ($arcade_games_blog_check == 1) {
$arcade_games_contact = array(
'post_type' => 'page',
'post_title' => $arcade_games_blog_title,
'post_status' => 'publish',
'post_author' => 1,
'post_name' => 'contact-us',
'post_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, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."',
);
$arcade_games_blog_id = wp_insert_post($arcade_games_contact);
}
//---Header--//
set_theme_mod( 'arcade_games_display_header_title', false);
set_theme_mod( 'arcade_games_header_announcement_text', 'Welcome to war game studio' );
set_theme_mod('arcade_games_social_links_settings', array(
array(
"link_text" => "fab fa-facebook-f",
"link_url" => "#"
),
array(
"link_text" => "fab fa-twitter-square",
"link_url" => "#"
),
array(
"link_text" => "fab fa-linkedin",
"link_url" => "#"
),
array(
"link_text" => "fab fa-instagram",
"link_url" => "#"
),
array(
"link_text" => "fab fa-pinterest-p",
"link_url" => "#"
)
));
set_theme_mod( 'arcade_games_sign_up_text', 'Sign Up' );
set_theme_mod( 'arcade_games_sign_up_url', '#' );
set_theme_mod( 'arcade_games_sign_in_text', ' Sign In' );
set_theme_mod( 'arcade_games_sign_in_url', '#' );
//-----Slider-----//
set_theme_mod( 'arcade_games_blog_box_enable', true);
set_theme_mod( 'arcade_games_slider_short_heading', ' Are You Ready For New Battle' );
set_theme_mod( 'arcade_games_blog_slide_number', '3' );
$arcade_games_latest_post_category = wp_create_category('Slider Post');
set_theme_mod( 'arcade_games_blog_slide_category', 'Slider Post' );
for($i=1; $i<=3; $i++) {
$title = 'Play Fun Game Arcade with Gamezo !';
$content = 'Lorem Ipsum has been the industrys standard dummy text ever since the 1500s when an unknown printer took a galley.';
// Create post object
$arcade_games_my_post = array(
'post_title' => wp_strip_all_tags( $title ),
'post_content' => $content,
'post_status' => 'publish',
'post_type' => 'post',
'post_category' => array($arcade_games_latest_post_category)
);
// Insert the post into the database
$arcade_games_post_id = wp_insert_post( $arcade_games_my_post );
$arcade_games_image_url = get_template_directory_uri().'/assets/images/banner.png';
$arcade_games_image_name= 'banner.png';
$arcade_games_upload_dir = wp_upload_dir();
// Set upload folder
$arcade_games_image_data = file_get_contents($arcade_games_image_url);
// Get image data
$arcade_games_unique_file_name = wp_unique_filename( $arcade_games_upload_dir['path'], $arcade_games_image_name );
// Generate unique name
$filename= basename( $arcade_games_unique_file_name );
// Create image file name
// Check folder permission and define file location
if( wp_mkdir_p( $arcade_games_upload_dir['path'] ) ) {
$file = $arcade_games_upload_dir['path'] . '/' . $filename;
} else {
$file = $arcade_games_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, $arcade_games_image_data, FS_CHMOD_FILE ) ) {
wp_die( 'Error saving file!' );
}
$arcade_games_wp_filetype = wp_check_filetype( $filename, null );
$arcade_games_attachment = array(
'post_mime_type' => $arcade_games_wp_filetype['type'],
'post_title' => sanitize_file_name( $filename ),
'post_content' => '',
'post_type' => 'post',
'post_status' => 'inherit'
);
$arcade_games_attach_id = wp_insert_attachment( $arcade_games_attachment, $file, $arcade_games_post_id );
require_once(ABSPATH . 'wp-admin/includes/image.php');
$arcade_games_attach_data = wp_generate_attachment_metadata( $arcade_games_attach_id, $file );
wp_update_attachment_metadata( $arcade_games_attach_id, $arcade_games_attach_data );
set_post_thumbnail( $arcade_games_post_id, $arcade_games_attach_id );
}
//-----Categories-----//
set_theme_mod( 'arcade_games_products_section_enable', true);
set_theme_mod( 'arcade_games_products_short_heading', 'Top Games');
set_theme_mod( 'arcade_games_products_main_heading', 'Our Latest Game');
set_theme_mod( 'arcade_games_projects_number', '4' );
$arcade_games_latest_post_category = wp_create_category('Product');
wp_insert_term(
'awesome-product', // the term
'product_cat', // the taxonomy
array(
'description'=> '',
'slug' => 'awesome-product',
'term_id'=>12,
'term_taxonomy_id'=>34,
)
);
set_theme_mod( 'arcade_games_products_category', 'Awesome Product' );
if ( class_exists( 'WooCommerce' ) ) {
for($i=1;$i<=4;$i++) {
$title = 'Game Name 01';
$content = 'Lorem ipsum dolor sit amit.';
// Create post object
$my_post = array(
'post_title' => wp_strip_all_tags( $title ),
'post_content' => $content,
'post_status' => 'publish',
'post_type' => 'product',
);
// Insert the post into the database
$post_id = wp_insert_post( $my_post );
// Gets term object from Tree in the database.
$term = get_term_by('name', 'awesome-product', 'product_cat');
wp_set_object_terms($post_id, $term->term_id, 'product_cat');
update_post_meta( $post_id, '_price', '$50' );
update_post_meta( $post_id, '_sale_price', "$50" );
update_post_meta( $post_id, '_regular_price', "$100" );
$image_url = get_template_directory_uri().'/assets/images/products'.$i.'.png';
$image_name= 'products'.$i.'.png';
$upload_dir = wp_upload_dir();
// Set upload folder
$image_data= file_get_contents($image_url);
// Get image data
$unique_file_name = wp_unique_filename( $upload_dir['path'], $image_name );
// Generate unique name
$filename= basename( $unique_file_name );
// Create image 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_content' => '',
'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 );
// And finally assign featured image to post
set_post_thumbnail( $post_id, $attach_id );
}
}
/*--- Logo Start---*/
$image_url = get_template_directory_uri().'/assets/images/logo.png';
$image_name = 'logo.png';
$upload_dir = wp_upload_dir();
// Set upload folder
$image_data_1 = file_get_contents(esc_url($image_url));
// Get image data
$unique_file_name = wp_unique_filename($upload_dir['path'], $image_name);
// Generate unique name
$filename = basename($unique_file_name);
// Create image 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_1, 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' => '',
'post_status' => 'inherit',
);
// Create the attachment
$attach_id = wp_insert_attachment($attachment, $file);
set_theme_mod( 'custom_logo', $attach_id );
/*--- Logo End---*/
//--------------------------------------//
$this->create_theme_nav_menu();
}
}