Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Huidige artist ABC query

// WP_Query arguments
$args = array(
	'post_type'              => array( 'artist' ),
	'order'                  => 'ASC',
	'orderby'                => 'title',
	'tax_query'              => array(
		array(
			'taxonomy'         => 'editie',
			'terms'            => 'huidig',
			'field'            => 'term_id',
			'operator'         => 'IN',
		),
	),
);

// The Query
$query = new WP_Query( $args );