0) : if (get_post( $option_value )) : // Page exists return; endif; endif; $page_found = $wpdb->get_var("SELECT ID FROM " . $wpdb->posts . " WHERE post_name = '$slug' LIMIT 1;"); if ($page_found) : // Page exists return; endif; $page_data = array( 'post_status' => 'publish', 'post_type' => 'page', 'post_author' => 1, 'post_name' => $slug, 'post_title' => $page_title, 'post_content' => $page_content, 'post_parent' => $post_parent, 'comment_status' => 'closed' ); $page_id = wp_insert_post($page_data); update_option($option, $page_id); } /** * Create pages * * Creates pages that the plugin relies on, storing page id's in variables. */ function woocommerce_create_pages() { // Shop page woocommerce_create_page( esc_sql( _x('shop', 'page_slug', 'woothemes') ), 'woocommerce_shop_page_id', __('Shop', 'woothemes'), '' ); // Cart page woocommerce_create_page( esc_sql( _x('cart', 'page_slug', 'woothemes') ), 'woocommerce_cart_page_id', __('Cart', 'woothemes'), '[woocommerce_cart]' ); // Checkout page woocommerce_create_page( esc_sql( _x('checkout', 'page_slug', 'woothemes') ), 'woocommerce_checkout_page_id', __('Checkout', 'woothemes'), '[woocommerce_checkout]' ); // Order tracking page woocommerce_create_page( esc_sql( _x('order-tracking', 'page_slug', 'woothemes') ), 'woocommerce_order_tracking_page_id', __('Track your order', 'woothemes'), '[woocommerce_order_tracking]' ); // My Account page woocommerce_create_page( esc_sql( _x('my-account', 'page_slug', 'woothemes') ), 'woocommerce_myaccount_page_id', __('My Account', 'woothemes'), '[woocommerce_my_account]' ); // Edit address page woocommerce_create_page( esc_sql( _x('edit-address', 'page_slug', 'woothemes') ), 'woocommerce_edit_address_page_id', __('Edit My Address', 'woothemes'), '[woocommerce_edit_address]', get_option('woocommerce_myaccount_page_id') ); // View order page woocommerce_create_page( esc_sql( _x('view-order', 'page_slug', 'woothemes') ), 'woocommerce_view_order_page_id', __('View Order', 'woothemes'), '[woocommerce_view_order]', get_option('woocommerce_myaccount_page_id') ); // Change password page woocommerce_create_page( esc_sql( _x('change-password', 'page_slug', 'woothemes') ), 'woocommerce_change_password_page_id', __('Change Password', 'woothemes'), '[woocommerce_change_password]', get_option('woocommerce_myaccount_page_id') ); // Pay page woocommerce_create_page( esc_sql( _x('pay', 'page_slug', 'woothemes') ), 'woocommerce_pay_page_id', __('Checkout → Pay', 'woothemes'), '[woocommerce_pay]', get_option('woocommerce_checkout_page_id') ); // Thanks page woocommerce_create_page( esc_sql( _x('order-received', 'page_slug', 'woothemes') ), 'woocommerce_thanks_page_id', __('Order Received', 'woothemes'), '[woocommerce_thankyou]', get_option('woocommerce_checkout_page_id') ); } /** * Table Install * * Sets up the database tables which the plugin needs to function. */ function woocommerce_tables_install() { global $wpdb; $collate = ''; if($wpdb->supports_collation()) { if(!empty($wpdb->charset)) $collate = "DEFAULT CHARACTER SET $wpdb->charset"; if(!empty($wpdb->collate)) $collate .= " COLLATE $wpdb->collate"; } require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); $sql = "CREATE TABLE IF NOT EXISTS ". $wpdb->prefix . "woocommerce_attribute_taxonomies" ." ( `attribute_id` mediumint(9) NOT NULL AUTO_INCREMENT, `attribute_name` varchar(200) NOT NULL, `attribute_label` longtext NULL, `attribute_type` varchar(200) NOT NULL, PRIMARY KEY id (`attribute_id`)) $collate;"; dbDelta($sql); $sql = "CREATE TABLE IF NOT EXISTS ". $wpdb->prefix . "woocommerce_downloadable_product_permissions" ." ( `product_id` mediumint(9) NOT NULL, `user_email` varchar(200) NOT NULL, `user_id` mediumint(9) NULL, `order_key` varchar(200) NOT NULL, `downloads_remaining` varchar(9) NULL, PRIMARY KEY id (`product_id`, `order_key`)) $collate;"; dbDelta($sql); $sql = "CREATE TABLE IF NOT EXISTS ". $wpdb->prefix . "woocommerce_termmeta" ." ( `meta_id` bigint(20) NOT NULL AUTO_INCREMENT, `woocommerce_term_id` bigint(20) NOT NULL, `meta_key` varchar(255) NULL, `meta_value` longtext NULL, PRIMARY KEY id (`meta_id`)) $collate;"; dbDelta($sql); } /** * Default taxonomies * * Adds the default terms for taxonomies - product types and order statuses. Modify at your own risk. */ function woocommerce_default_taxonomies() { if (!taxonomy_exists('product_type')) : register_taxonomy( 'product_type', array('post')); register_taxonomy( 'shop_order_status', array('post')); endif; $product_types = array( 'simple', 'grouped', 'variable', 'downloadable', 'virtual' ); foreach($product_types as $type) { if (!get_term_by( 'slug', sanitize_title($type), 'product_type')) { wp_insert_term($type, 'product_type'); } } $order_status = array( 'pending', 'failed', 'on-hold', 'processing', 'completed', 'refunded', 'cancelled' ); foreach($order_status as $status) { if (!get_term_by( 'slug', sanitize_title($status), 'shop_order_status')) { wp_insert_term($status, 'shop_order_status'); } } }