Wordpress combine queries
问题 I have two queries that I need to try to combine so that my pagination works correctly, and the posts show up in the correct order. I have this one query: $today = date('m/d/Y', strtotime('today')); $args = array( 'post_type' => 'workshops', "posts_per_page" => 5, "paged" => $paged, 'meta_key' => 'select_dates_0_workshop_date', 'orderby' => 'meta_value', 'order' => 'ASC', 'meta_query' => array( array( 'key' => 'select_dates_0_workshop_date', 'meta-value' => "meta_value", 'value' => $today,