profiles wp_query
// WP_Query arguments
$args = array(
'post_type' => array( 'profiles' ),
'nopaging' => true,
'posts_per_page' => '-1',
'order' => 'DESC',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'departments',
'terms' => 'biomedical-engineering',
'field' => 'term_id',
),
),
);
// The Query
$wp_query = new WP_Query( $args );
// The Loop
if ( $wp_query->have_posts() ) {
while ( $wp_query->have_posts() ) {
$wp_query->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();