确保在Shop页面上启用了注释。
然后钩住wp_list_comments();
在woocommerce_after_shop_loop
.
像这样的东西;
function display_comments() {
if (is_shop()) {
wp_list_comments(array( \'format\' => \'html5\' ));
}
}
add_action(\'woocommerce_after_shop_loop\', \'display_comments\');