Get All Profiles
// WP_Query arguments $args = array( 'tax_query' => array( array( 'taxonomy' => 'category', 'terms' => 'profiles', 'field' => 'term_id', 'operator' => 'IN', ), ), ); // The Query $query = new WP_Query( $args );
// WP_Query arguments $args = array( 'tax_query' => array( array( 'taxonomy' => 'category', 'terms' => 'profiles', 'field' => 'term_id', 'operator' => 'IN', ), ), ); // The Query $query = new WP_Query( $args );