This file contains 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
function acf_load_ninja_form_field_choices( $field ) { | |
// reset choices | |
$field['choices'] = array(); | |
$ninja_forms = Ninja_Forms()->form()->get_forms(); | |
foreach($ninja_forms as $nf): | |
$value = '[ninja_forms id='.$nf->get_id().']'; | |
$nf_settings = $nf->get_settings(); | |
$label = $nf_settings['title']; |
This file contains 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
/* | |
############################## | |
########### Search ########### | |
############################## | |
*/ | |
/** | |
* | |
* [list_searcheable_acf list all the custom fields we want to include in our search query] | |
* @return [array] [list of custom fields] |
NewerOlder