Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

kmu_faq

// WP_Query arguments
$args = array(
	'post_type'              => array( 'frage-and-antwort' ),
);

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

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

// Restore original Post Data
wp_reset_postdata();