Skip to content

Instantly share code, notes, and snippets.

@joloco
joloco / acf-import-from-php.php
Last active September 1, 2022 12:29
Surprisingly simple way to import fields into ACF GUI from PHP code
<?php
// To re-import ACF settings from acf_add_local_field_group() into the ACF wp-admin GUI
$group_key = 'group_111222333'; // This must match the key as defined at the top of acf_add_local_field_group()
//After the field group is completely set up, get the field group.
$group = acf_get_field_group($group_key);
// then get the fields for the group