Check boxes custom field title
-
Hello
The custom field title is not showing for the checkboxes field type
wpas_add_custom_field( ‘company_type’,
array(
‘title’ => __( ‘Check the box(es) that best describe your company size:’, ‘wpas’ ),
‘field_type’ => ‘checkbox’,
‘required’ => true,
‘options’ => array(
‘Fortune 500 Corporation’ => ‘Fortune 500 Corporation’,
‘Non-profit’ => ‘Non-profit’,
‘Educational Institution’ => ‘Educational Institution’,
‘Startup’ => ‘Startup’,
‘Small Business (less than 20 people)’ => ‘Small Business (less than 20 people)’,
‘Other’ => ‘Other’
),
)
);
The topic ‘Check boxes custom field title’ is closed to new replies.