在Woocommerce中以编程方式添加带有评分的产品评论

时间:2018-08-31 20:32:50

标签: php wordpress woocommerce comments rating

标题说明了一切。我知道评论是Wordpress中的本机评论帖子类型。我已经添加了添加注释的代码。

但是问题是我不清楚如何给评论打分以及如何将其与特定产品绑定。当我使用comment_post_ID时,似乎没有将评论(评论)分配给正确的帖子。

$time = current_time('mysql');

$data = array(
    'comment_post_ID' => 1,
    'comment_author' => 'admin',
    'comment_author_email' => 'admin@admin.com',
    'comment_author_url' => 'http://',
    'comment_content' => 'content here',
    'comment_type' => '',
    'comment_parent' => 0,
    'user_id' => 1,
    'comment_author_IP' => '127.0.0.1',
    'comment_agent' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 (.NET CLR 3.5.30729)',
    'comment_date' => $time,
    'comment_approved' => 1,
);

wp_insert_comment($data);

2 个答案:

答案 0 :(得分:1)

使用键'comment_post_ID'可以在其中显示您的评论,以便提供所需的产品ID

然后,您可以使用update_comment_meta()专用的WordPress函数添加评分,例如:

update_comment_meta( $comment_id, 'rating', 3 ); // The rating is an integer from 1 to 5

因此您的代码将类似于(其中 $product_id 是此评论的目标产品ID):

$comment_id = wp_insert_comment( array(
    'comment_post_ID'      => 37, // <=== The product ID where the review will show up
    'comment_author'       => 'LoicTheAztec',
    'comment_author_email' => 'loictheaztec@fantastic.com', // <== Important
    'comment_author_url'   => '',
    'comment_content'      => 'content here',
    'comment_type'         => '',
    'comment_parent'       => 0,
    'user_id'              => 5, // <== Important
    'comment_author_IP'    => '',
    'comment_agent'        => '',
    'comment_date'         => date('Y-m-d H:i:s'),
    'comment_approved'     => 1,
) );

// HERE inserting the rating (an integer from 1 to 5)
update_comment_meta( $comment_id, 'rating', 3 );

经过测试并按预期工作。

  

作者电子邮件用户名必须是现有的。

enter image description here

答案 1 :(得分:1)

接受的答案不完整,因为问题包含如何将其绑定到特定产品。另外,评论类型也应评论填充。如果评论与产品无关,则Yoast模式和其他内容不会填充所有变量,并且Google会向您提供有关模式标记的警告

将此添加到接受的答案中:

'comment_type'          => 'review'

还要绑定到乘积(您的$post_id),标记bool值和数组。

if($comment_id) update_comment_meta($comment_id, 'rating', 5);
if($comment_id) update_comment_meta($comment_id, 'verified', 1);
    
if($comment_id) update_post_meta($post_id, '_wc_average_rating', '5.00');
if($comment_id) update_post_meta($post_id, '_wc_review_count', '1');
if($comment_id) update_post_meta($post_id, '_wc_rating_count', array(1));

现在,从Woocommerce 3和2020年开始,Google便将此视为魅力。@ loictheastec您可以根据需要进行编辑。