Add property settings

This commit is contained in:
Hoang Huu
2020-02-28 15:12:31 +07:00
parent 40bcb3b3b2
commit ca997b7dde
9 changed files with 473 additions and 344 deletions

View File

@@ -226,6 +226,14 @@ class Opalestate_Settings_General_Tab extends Opalestate_Settings_Base_Tab {
'options' => opalestate_get_measurement_units(),
'default' => 'sqft',
],
[
'name' => esc_html__( 'Time Format', 'opalestate-pro' ),
'desc' => esc_html__( 'Select a time format.', 'opalestate-pro' ),
'id' => 'time_format',
'type' => 'select',
'options' => opalestate_get_time_formats(),
'default' => '12_hour',
],
]
);
}