spivurno
3/7/2019 - 4:08 PM

Gravity Perks // Populate Anything // Populate Post Meta as Choices

<?php
/**
 * Gravity Perks // Populate Anything // Populate Post Meta as Choices
 * https://gravitywiz.com/documentation/gravity-forms-populate-anything/
 */
// Update "123" with your form ID; Update "4" with your field ID.
add_filter( 'gppa_input_choices_123_4', function( $choices, $field, $objects ) {

	$custom_field = str_replace( 'meta_', '', $field['gppa-choices-templates']['label'] );
	$meta         = get_post_meta( $objects[0]->ID, $custom_field );
	$choices      = array();

	foreach( $meta as $value ) {
		$choices[] = array(
			'text'  => $value,
			'value' => $value,
		);
	}

	return $choices;
}, 10, 3 );