I’m having the same problem. I need to create a simple Static Dropdown, but I have no idea where to enter the options. You could enter an example of Static Dropdown complete?
I read the documentation but have not found the solution: https://getawesomesupport.com/documentation/awesome-support/custom-fields/
My sample code:
wpas_add_custom_taxonomy( ‘my_custom_field’, array(
‘title’ => __( ‘My Custom Field’, ‘wpas’ ),
‘show_column’ => true,
‘callback’ => ‘text’,
‘DROP_DOWN_SAMPLE_CONTENT’ => ‘option 01, option 02’, How I insert the options?????
)
);