<?php
/**
* Template name: Create Product
* @package storefront
*/
$post_id = wp_insert_post( array(
'post_title' => 'Adams Product',
'post_content' => 'Here is content of the post, so this is our great new products description',
'post_status' => 'publish',
'post_type' => "product",
) );
wp_set_object_terms( $post_id, 'simple', 'product_type' );
update_post_meta( $post_id, '_visibility', 'visible' );
update_post_meta( $post_id, '_stock_status', 'instock');
update_post_meta( $post_id, 'total_sales', '0' );
update_post_meta( $post_id, '_downloadable', 'no' );
update_post_meta( $post_id, '_virtual', 'yes' );
update_post_meta( $post_id, '_regular_price', '' );
update_post_meta( $post_id, '_sale_price', '' );
update_post_meta( $post_id, '_purchase_note', '' );
update_post_meta( $post_id, '_featured', 'no' );
update_post_meta( $post_id, '_weight', '' );
update_post_meta( $post_id, '_length', '' );
update_post_meta( $post_id, '_width', '' );
update_post_meta( $post_id, '_height', '' );
update_post_meta( $post_id, '_sku', '' );
update_post_meta( $post_id, '_product_attributes', array() );
update_post_meta( $post_id, '_sale_price_dates_from', '' );
update_post_meta( $post_id, '_sale_price_dates_to', '' );
update_post_meta( $post_id, '_price', '' );
update_post_meta( $post_id, '_sold_individually', '' );
update_post_meta( $post_id, '_manage_stock', 'no' );
update_post_meta( $post_id, '_backorders', 'no' );
update_post_meta( $post_id, '_stock', '' );
?>
我能够创建产品从前端在吴电子商务,但我需要像当用户创建自己的产品,然后价格根据他们的输入数据进行更改,并保存在数据库中各自的价格以及所有输入数据到产品,假设如果用户有大约15- 20 kg之间狗(由用户输入)及其尺寸(下拉菜单)是超重,然后根据用户输入的价格计算。如果产品成功插入,然后添加此产品到他的/她购物车自动重定向到购物车页面。
我附上我的代码插入一个产品从一个模板在前端。我怎样才能做到这一点?谢谢提前。
1条答案
按热度按时间8e2ybdfx1#
调整你的元数据和计算