How to order custom post type by multiple custom fields?
when you use ‘meta_key’ => ‘Start_Hour Start_Minute’ then the query looks for posts with a custom field named Start_Hour Start_Minute together so that is why its not working for you. But there is a way to order by multiple custom fields using posts_orderby filter hook, so first create a function that will add your orderby … Read more