Ниже кода выводит средние оценки (через шорткод) всех продуктов в цикле, как это: 3.0 4.0 4.0 5.0
function iw_get_product_ratings_by_attribute_shortcode() {
// The Query
$query = new WP_Query( array(
'posts_per_page' => -1,
'tax_query' => array(
'relation'=>'AND',
array(
'taxonomy' => 'pa_merk',
'field' => 'slug',
'terms' => 'twins'
)
)
) );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
$rating = get_post_meta( get_the_id(), '_wc_average_rating', true );
if ($rating != 0) { echo number_format((float)$rating, 1, '.', ''); }
}
/* Restore original Post Data */
wp_reset_postdata();
}
}
add_shortcode('iw_get_product_ratings_by_attribute', 'iw_get_product_ratings_by_attribute_shortcode');
Как я могу получить ОБЩИЙ СРЕДНИЙ из этих чисел?
Другими словами: я хотел бы отобразить среднюю оценку всех продуктов (с атрибутом 'pa_merk' и значением 'twins')
ОБНОВЛЕНИЕ: НИЖЕ КОД ДЕЛАЕТРАБОТА:)
function iw_get_product_ratings_by_attribute_shortcode() {
// The Query
$query = new WP_Query( array(
'posts_per_page' => -1,
'tax_query' => array(
'relation'=>'AND',
array(
'taxonomy' => 'pa_merk',
'field' => 'slug',
'terms' => 'twins'
)
)
) );
// The Loop
if ( $query->have_posts() ) {
$ratingSum = 0;
$postsCount = 0;
while ( $query->have_posts() ) {
$query->the_post();
$rating = get_post_meta( get_the_id(), '_wc_average_rating', true );
if ($rating != 0) {
$postsCount++;
$ratingSum += $rating;
}
}
if ($ratingSum > 0 && $postsCount > 0) {
return $ratingSum / $postsCount; // todo do the rounding stuff
}
/* Restore original Post Data */
wp_reset_postdata();
}
}
add_shortcode('iw_get_product_ratings_by_attribute', 'iw_get_product_ratings_by_attribute_shortcode');