我需要获得的是从Woocommerce中获取所有产品的所有评论。我试过te
get_comments( array( 'post_type' => 'product') );
但是它给了我所有评论不是针对特定的产品ID。
答案 0 :(得分:2)
你好,经过一些研究我得到了我想要的是代码,它返回特定产品的所有批准的帖子。
<table class="file_class"><tr id="D:\input.txt"></tr></table>
答案 1 :(得分:0)
这是获得最新产品评论的正确代码。
$args = array (
'post_type' => 'product',
'post_id' => $product->get_id(), // Product Id
'status' => "approve", // Status you can also use 'hold', 'spam', 'trash',
'number' => 1 // Number of comment you want to fetch I want latest approved comment. But if you want all comments for specific product then you should remove 'number'.
);
$comments = get_comments($args);