Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

wordpress acf get checkbox options

$values = get_field('your_field_key');
$field = get_field_object('your_field_key');
$choices = $field['choices'];
foreach( $choices as $choice => $label ){
  echo("Value: $choice , Label: $label</br>");
}
 
PREVIOUS NEXT
Tagged: #wordpress #acf #checkbox #options
ADD COMMENT
Topic
Name
2+7 =