Filter on one post type with taxonimy and get other post type
tax_query with an ‘OR’ relation. This means that the query will fetch posts that meet either condition: they are ‘landing-pages’ with the specified taxonomy terms, or they are any of the other specified post types without additional taxonomy constraints. $args = array( ‘posts_per_page’ => 6, ‘post_status’ => ‘publish’, ‘order’ => ‘DESC’, ‘post_type’ => array(‘news’, ‘videos’, … Read more