0

フィールド名が「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」であるリピーター フィールド内に存在するチェックボックス フィールドにデータを入力する必要があります。

4

1 に答える 1

1

エリオットがこのフォームで言っているように. サブフィールドのキーを使用してみてください。ここでは、フィールドのキーを表示する方法を見つけることができます

add_filter('acf/load_field/key={your key here}', 'acf_load_features_field_choices');

于 2018-12-03T08:01:56.297 に答える