Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Menu

// WP_Query arguments
$args = array(
	'post_type'              => array( 'menupunkt' ),
	'post_status'            => array( 'publish' ),
	'order'                  => 'DESC',
	'orderby'                => 'menu_order',
	'tax_query'              => array(
		array(
			'taxonomy'         => 'kategorie',
			'terms'            => '1',
			'field'            => 'term_id',
			'include_children' => false,
		),
	),
);

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

// The Loop
if ( $items->have_posts() ) {
	while ( $items->have_posts() ) {
		$items->the_post();
		// do something
	}
} else {
	// no posts found
}

// Restore original Post Data
wp_reset_postdata();