フィールド名が「simple_field」であるこのコードを使用して、シンプルなカスタム フィールドのカスタム投稿「features」でチェックボックスの値を設定できます。
function acf_load_features_field_choices( $field ) {
$field['choices'] = array();
$features = get_posts(array(
'post_status' => 'publish',
'post_type' => 'features',
'posts_per_page' => -1,
'orderby' => 'title',
'order' => 'ASC'
));
foreach( $features as $feature ) {
$value = $feature->ID;
$label = $feature->post_title;
$field['choices'][ $value ] = $label;
}
return $field;
}
add_filter('acf/load_field/name=simple_field', 'acf_load_features_field_choices');
しかし、リピーター フィールド名が「feature_item」で、チェックボックス フィールド名が「list」であるリピーター フィールド内に存在するチェックボックス フィールドにデータを入力する必要があります。