I was wondering if anyone knew how to retrieve the multi set rating of a post rather than just the standard rating this code retrieves
$postRatingData = wp_gdsr_rating_article(get_the_ID());
gdsr_render_stars_custom(array(
“max_value” => gdsr_settings_get(‘stars’),
“size” => 12,
“vote” => $postRatingData->rating
));
To be clear, I want to “average” multi set rating to appear instead of the normal gdsr rating the code above shows.
I tried all of different functions in the builder but none seem to work, could someone help me. THANK YOU so much in advance.