$sub_fields = array( array('GROUPFIELDNAME' => array('GROUPSUBFIELDNAME' => $GROUPSUBFIELDVALUE), 'acf_fc_layout' => 'FLEXIBLECONTENTNAME') ); update_field('field_59778f7a4af43', $sub_fields, $post->ID);
$sub_fields = array( array('GROUPFIELDNAME' => array('GROUPSUBFIELDNAME' => $GROUPSUBFIELDVALUE), 'acf_fc_layout' => 'FLEXIBLECONTENTNAME') ); update_field('field_59778f7a4af43', $sub_fields, $post->ID);
Exporting from Drupal Use Views Data Export module and these instructions. When exporting tags there’s a couple options. 1. You can have all the added tags in one field value. 2. You can export each taxonomy individually. Depending on how you want the tags within the WP site you may prefer one way or another. … Continued
First off, don’t do this (also, say that post title 10 times fast; r/titlegore). It’s better to not have to write logic into an app so that two things can see the same data from different parts of the db. It should be stored only in one spot and referenced from there. However, within a … Continued