Skip to content

Instantly share code, notes, and snippets.

@Tyxz
Tyxz / polylang-sync-rate-my-post.php
Last active August 18, 2022 17:28
Sync the ratings of the Wordpress plugin "rate-my-post" with all polylang translated variants of it.
<?php
if ( ! defined( 'ABSPATH' ) ) {
die;
}
function pll_sync_store_rating($post_id, $translation_id, $new_avg_rating, $new_vote_count, $submitted_rating) {
// Update rating sum
$new_ratings_sum = $submitted_rating;
if ( $new_vote_count > 1) {
$new_ratings_sum = get_post_meta($post_id, 'rmp_rating_val_sum', true);