Skip to content

Instantly share code, notes, and snippets.

@New0
Last active February 7, 2018 17:08
Show Gist options
  • Save New0/5fea616e03c2f1e364f4b34d1126586a to your computer and use it in GitHub Desktop.
Save New0/5fea616e03c2f1e364f4b34d1126586a to your computer and use it in GitHub Desktop.
Return pods CPT title as the label for a select field options autopopulated using easy pods.
<?php
/**
* Change which Pods field is used for the label of a Caldera Forms field autopopulated with the results of an Easy Pods for a specific Easy Pod.
*/
add_filter( 'caldera_forms_easy_pods_autopopulate_label_field', function( $label_field ){
$label_field = 'post_title';
return $label_field;
}, 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment