Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save khoipro/a353c3beab72ff862756abd587f6f815 to your computer and use it in GitHub Desktop.
Save khoipro/a353c3beab72ff862756abd587f6f815 to your computer and use it in GitHub Desktop.
Populate ACF select field options with Gravity Forms to select a specific form
<?php
/**
* Populate ACF select field options with Gravity Forms forms
*/
function acf_populate_gf_forms_ids( $field ) {
if ( class_exists( 'GFFormsModel' ) ) {
$choices = [];
foreach ( \GFFormsModel::get_forms() as $form ) {
$choices[ $form->id ] = $form->title;
}
$field['choices'] = $choices;
}
return $field;
}
add_filter( 'acf/load_field/name=submit_project_gf_form_id', 'acf_populate_gf_forms_ids' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment