Last active
February 7, 2018 17:08
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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