Skip to content

Instantly share code, notes, and snippets.

@Shelob9
Created May 2, 2017 19:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shelob9/642e30675ede154f180c40199acb7b26 to your computer and use it in GitHub Desktop.
Save Shelob9/642e30675ede154f180c40199acb7b26 to your computer and use it in GitHub Desktop.
Get all field IDs or field slugs or field labels from a Caldera Form
<?php
/**
Get all field IDs or field slugs or field labels from a Caldera Form
*/
//Get form config
$form = Caldera_Forms_Forms::get_form( 'CF58c1e0a4d7c27' );
//Get all fields in order
$fields = Caldera_Forms_Forms::get_fields( $form, true );
//reduce to just field IDs
$field_ids = array_keys( $fields );
//reduce to just field slugs
$field_slugs = wp_list_pluck( $fields, 'slug' );
//reduce to just field labels
$field_labels = wp_list_pluck( $fields, 'label' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment