【发布时间】:2015-05-16 07:58:19
【问题描述】:
我正在尝试在我的测试页面上获取有关任何产品的最新评论/评论,到目前为止,我将其视为帖子,并得到了类似这样的内容:
<?php
$args = array ('post_type' => 'product');
$comments = get_comments( $args );
wp_list_comments( array( 'callback' => 'woocommerce_comments' ), $comments);
?>
<?php get_comments( $args ); ?>
非常感谢任何帮助。
【问题讨论】:
标签: php wordpress woocommerce review