Skip to content

Instantly share code, notes, and snippets.

function acf_form_field_load( $field ) {
$field['choices'] = array();
$forms = RGFormsModel::get_forms( null, 'title' );
$field['choices'][''] = '- Select Form -';
foreach ( $forms as $form ) {
$field['choices'][ $form->id ] = $form->title;
}
return $field;
}
/* ========================================================================
// Multi Select
// ========================================================================*/
/* ------------------------------------------------------------------------
// Sortable
// ------------------------------------------------------------------------*/
function multiSelectSortableAfterInit(that, container){