我一直在尝试移动woocommerce评论。我能够删除评论并将其替换在标签之外,但我无法将表单复原显示出来。
这是我到目前为止的代码:
function woocommerce_review_list() {
$args = array ('post_type' => 'product');
$comments = get_comments( $args );
wp_list_comments( array( 'callback' => 'woocommerce_comments' ), $comments);
}
add_action('woocommerce_after_single_product_summary', 'woocommerce_review_list', 10);
答案 0 :(得分:0)
您可以尝试加载WooCommerce的整个评论模板:
wc_get_template('single-product-reviews.php');
或者说你没有简单地从that template复制出相关部分。