我正在尝试在我网站的主页上显示预订表格(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
的产品中输出预订表单。
欢迎任何帮助。