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
neilgee
neilgee
Participant

Hi Ernest,

I got a function that can output the array –

$checkboxes = get_field('my_checkbox_list');
	if( $checkboxes ){
		
		$checkbox_string = implode(', ', $checkboxes);
		echo ' – ' . $checkbox_string;
		
}

So now how can I hook into Search results.

Thanks
Neil

  • This reply was modified 8 years, 11 months ago by neilgee neilgee.