This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Checklist Field Displays as Array

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Checklist Field Displays as Array Reply To: Checklist Field Displays as Array

#5683
neilgeeneilgee
Participant

Hi Ernest,

I got a function that can output the array –
[code]$checkboxes = get_field(‘my_checkbox_list’);
if( $checkboxes ){

$checkbox_string = implode(‘, ‘, $checkboxes);
echo ‘ – ‘ . $checkbox_string;

}[/code]
So now how can I hook into Search results.

Thanks
Neil

  • This reply was modified 10 years, 9 months ago by neilgeeneilgee.