Skip to content

Instantly share code, notes, and snippets.

@evanfraser
Created December 12, 2022 19:43
Show Gist options
  • Save evanfraser/3a4676eb767cc9493bfe375180aa63b6 to your computer and use it in GitHub Desktop.
Save evanfraser/3a4676eb767cc9493bfe375180aa63b6 to your computer and use it in GitHub Desktop.
Populate ACF select field options with Gravity Forms forms
<?php
add_filter('acf/load_field/name=gravity_form_id', function($field) {
if (class_exists('GFFormsModel')) {
$choices = [];
foreach (\GFFormsModel::get_forms() as $form) {
$choices[$form->id] = $form->title;
}
$field['choices'] = $choices;
}
return $field;
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment