我希望每次有人访问时在我的主页上显示 5 条随机评论。
我找到了一些代码来获取所有评论:
//add get product reviews to homepage
function get_woo_reviews()
{
$count = 0;
$html_r = "";
$title="";
$args = array(
'post_type' => 'product'
);
$comments_query = new WP_Comment_Query;
$comments = $comments_query->query( $args );
foreach($comments as $comment) :
$title = ''.get_the_title( $comment->comment_post_ID ).'';
$html_r = $html_r. "" .$title."";
$html_r = $html_r. "" .$comment->comment_content."";
$html_r = $html_r."Posted By".$comment->comment_author." On ".$comment->comment_date. "";
endforeach;
return $html_r;
}
add_shortcode('woo_reviews', 'get_woo_reviews');
当我将短代码添加[woo_reviews]到此测试页面时,它工作得很好。
如何更改此设置以仅获得 5 条随机评论?
另外,我现在如何格式化此页面以使其仅包含 5 条评论并能够更改页面上评论的外观(间距、字体等)?
喵喔喔
呼如林