acf_field_checkbox::render_field_choicespublicACF 5.6.0

render_field_choices

description

Method of the class: acf_field_checkbox{}

No Hooks.

Returns

$post_id. (int)

Usage

$acf_field_checkbox = new acf_field_checkbox();
$acf_field_checkbox->render_field_choices( $field );
$field(required)
.

Changelog

Since 5.6.0 Introduced.

acf_field_checkbox::render_field_choices() code ACF 6.0.4

function render_field_choices( $field ) {

	// walk
	return $this->walk( $field['choices'], $field );

}