Patient Resources WP_Query
// WP_Query arguments $args = array( 'post_type' => array( 'patient_resources' ), 'post_status' => array( 'publish' ), 'tax_query' => array( array( 'taxonomy' => 'patient_resources_categories', 'include_children' => true, ), ), ); // The Query $query = new WP_Query( $args );