我的所有帖子的评分均为1-5,在我的类别页面上,我想显示该类别所有帖子的平均评分。所以我知道带有值的字段在post循环中的位置,但是如何获得这些值并计算post循环之外的平均值?
答案 0 :(得分:0)
最简单的解决方案可能是在循环期间构造一个数组并在结束时对其进行平均。
// Before the loop
$ratings = array();
// During the loop
$ratings[] = $post_rating;
// After the loop
$average = array_sum($ratings) / count($ratings);