Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Aktuel forestilling query

// WP_Query arguments
$args = array(
	'post_type'              => array( 'Forestillingstyper' ),
	'tax_query'              => array(
		array(
			'taxonomy'         => 'Forestillingstyper',
			'include_children' => true,
		),
	),
);

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