woocomerce提供短代码[woocommerce_my_account]。在“我的帐户”页面中给出“帐单地址”和“送货地址”表格。
我想在我的自定义字段中添加一些额外的表单,例如“添加产品”,其结构和功能与“送货地址”和“结算地址”相同。
因为我想从前端添加一个“产品条目”表单。
怎么可能。是否有任何钩子或东西允许我添加自定义表单。请与我分享。
答案 0 :(得分:0)
M为您提供实现目标所需的步骤。但是你需要自己编写中间代码。
woocommerce_get_template( 'myaccount/my-custom-form.php' );
init
挂钩上,检查您的my-custom-field
是否可用。 if(isset($_REQUEST['my-custom-field']))
。用于创建产品:
wp_insert_post ( array (
'post_type' => 'product' ,
'post_title' => '' ,
'post_name' => '' ,
'post_author' => '' ,
'post_content' => '' ,
'post_status' => ''
) ) ;