0

我可以使用此代码在一个简单的自定义字段中使用我的自定义帖子“功能”填充复选框值,其中我的字段名称为“simple_field”。

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”,复选框字段名称为“列表”。

4

1 回答 1

1

正如埃利奥特在这张表格上所说的那样。尝试使用子字段的键。在这里您可以找到如何查看字段的键

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

于 2018-12-03T08:01:56.297 回答