我正在尝试在 wordpress 中的 POST 提交按钮上调用 function.php 中的自定义函数。波纹管你可以看到当我删除它时函数调用工作的 if 语句是完美的,但如果语句它在我发布时不起作用,我在 if 语句中到达但无法调用函数。
if (isset($_POST['addcustomcarts']))
{
echo("if");
add_filter('woocommerce_before_cart', 'customcart');
//global $woocommerce;
function customcart() {
global $woocommerce;
$my_post = array(
'post_title' => 'My post',
'post_content' => 'This is my post.',
'post_status' => 'publish',
'post_author' => 1,
'post_type' =>'product'
);
echo"sdafsdf";
// Insert the post into the database
$product_ID=wp_insert_post( $my_post );
add_post_meta($product_ID, '_regular_price', 100, $unique);
add_post_meta($product_ID, '_price', 100, $unique);
add_post_meta($product_ID, '_stock_status', 'instock', $unique);
$woocommerce->cart->add_to_cart( $product_ID, $quantity=1 );
//exit;
//header("Location: http://www.mydomain.com");exit();
wp_redirect(".home_url('cart').");
//wp_redirect(home_url());
//global $wpdb;
//$wpdb->query
//exit;
//exit;
}
}