Skip to content

Instantly share code, notes, and snippets.

View diogoterremoto's full-sized avatar
🚴
💨

Diogo Terremoto diogoterremoto

🚴
💨
View GitHub Profile
@diogoterremoto
diogoterremoto / wp-stateless-copy_to_all_translations.php
Last active May 24, 2021 14:07
Copy WP-Stateless field (`sm_cloud`) to all WPML translations on a media post upload to GCS.
<?php
/**
* Copy WP-Stateless field (`sm_cloud`) to all WPML translations on a media post upload to GCS.
*/
add_filter("wp_stateless_media_synced", function($metadata, $attachment_id, $force, $args) {
global $sitepress;
$trid = $sitepress->get_element_trid($attachment_id);
$translations = $sitepress->get_element_translations($trid);