Support

Account

Home Forums General Issues Defining field wrapper ID Reply To: Defining field wrapper ID

  • This could be done using an acf/load_field filter. All of the fields properties are editable using this filter.

    If you want to see what all of the properties of a field are you can add this to your function during testing

    
    echo '<pre>'; print_r($field); echo '</pre>';
    

    ~JH