woocommerce_template_single_add_to_cart特定产品ID

时间:2016-05-20 13:41:07

标签: wordpress wordpress-plugin woocommerce widget webhooks

我正在尝试在我网站的主页上显示预订表格(WooCommerce预订插件)。我创建了一个小部件空间,在这个小部件中,我想为特定产品调用函数woocommerce_template_single_add_to_cart

到目前为止,我有:

    <?php
$post_id = '2100';
if ( !function_exists( 'woocommerce_template_single_add_to_cart' ) ) { 
        require_once '/includes/wc-template-functions.php'; 
    } 
    $result = woocommerce_template_single_add_to_cart($post_id);
?>

但它不会从id = 2100的产品中输出预订表单。

欢迎任何帮助。

0 个答案:

没有答案