Saving metabox repeatable fields

Using the following code allows you to retrieve the array.

foreach ($repeatable_fields as $v) {

}   

Than you can access individual values with something like this:

<?php echo $v['text']; ?>

Leave a Comment