'brochures', 'posts_per_page' => $posts_per_page, // 'posts_per_page' => -1, 'post_status' => 'publish', 'order' => 'DESC', 'orderby' => 'date', 'meta_key' => 'brochure_pdf', 'meta_value' => '', 'meta_compare' => '!=', ); $brochuresPosts = new WP_Query($args); // #### FICHES INFOS QUERY $args = array( 'post_type' => 'fiches-infos', 'posts_per_page' => $posts_per_page, 'post_status' => 'publish', 'order' => 'DESC', 'orderby' => 'date', 'meta_key' => 'brochure_pdf', 'meta_value' => '', 'meta_compare' => '!=', ); $fichesInfosPosts = new WP_Query($args); // #### WEBINAIRES QUERY $args = array( 'post_type' => 'videos-webinaires', 'posts_per_page' => -1, 'post_status' => 'publish', 'order' => 'DESC', 'meta_key' => 'video_publication_date', 'orderby' => 'meta_value_num', ); $videosWebinairesPosts = new WP_Query($args); $total_posts_found = $brochuresPosts->found_posts + $fichesInfosPosts->found_posts + $videosWebinairesPosts->found_posts; ?>