Created
December 14, 2021 17:08
-
-
Save twentyfortysix/878719007f77a2f908ef4130af472e22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function gallery_2_galleryInFlexibleLayout(){ | |
$arr = [ | |
'post_type' => 'cp_resident', | |
'posts_per_page' => -1, | |
'fields' => 'ids' | |
]; | |
$q = new WP_Query($arr); | |
foreach ($q->posts as $id) { | |
echo $id.'<br>'; | |
// $values_to_migrate = get_field('field_595236f18886e', $id, false); // video | |
$values_to_migrate = get_field('field_5f47af2dbeea9', $id, false); // gallery | |
add_row( | |
'field_57b60b2f25458', [ // flexible | |
'acf_fc_layout' => 'galleryBlock', | |
'field_57b6f951e9817' => $values_to_migrate, //images/gallery | |
], $id); | |
var_dump($values_to_migrate); | |
echo '<br>'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment