Support

Account

Home Forums Pre-purchase Questions Select field question Reply To: Select field question

  • function my_function_select($field) {
    $post_id = 10;
    $field_id= ‘position’;
    $value = get_field($field_id, $post_id);
    $choices = $field[‘position’];
    $field[‘position’] = array_diff($choices, $value);
    return $field;
    }
    add_filter(‘acf/load_field/name=position’, ‘my_function_select’);

    $post_id=10; = custom post type where i have select dropdown (10 is actual id of one of the posts where i have the select…)
    $field_id=’position’; = name of the select field

    Can this be an issue because im using custom post types?