Skip to content

Instantly share code, notes, and snippets.

@hissy
Created October 4, 2013 08:14
Show Gist options
  • Save hissy/6822610 to your computer and use it in GitHub Desktop.
Save hissy/6822610 to your computer and use it in GitHub Desktop.
[WordPress/ACF] example of import values to repeater field
<?php
$value = array(
array(
'text' => 'text',
'image' => 1
),
array(
'text' => 'text2',
'image' => 2
)
);
update_field( $field_key, $value );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment