Hi there!
I've been looking, but there is surprisingly little discussion of using custom fields for setting event times. (Even Flutter only has a date field, nothing for time!)
I have a client who needs to post events with start and end times. Plus, we need to be able to order those events by their start times.
My first instinct was to have the client put in the time as military/24-hour value like 14:30 for 2:30pm, then use PHP to convert that to 12hr time on the front-end in the template using code illustrated here: http://style-vs-substance.com/programming/convert-24-hour-military-time-to-12-hour-ampm-time-in-php/
This works great, BUT, I hate making a client think about what format they are using when writing a post. Is there any way to let them input the value as 12-hour time, convert it to 24 hour time for ordering purposes only, and then display it as 12-hour time on the site?
Any ideas? Any?