Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

test1

// WP_Query arguments
$args = array(
	'post_type'              => array( 'joboffer' ),
	'post_status'            => array( 'publish' ),
);

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

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

// Restore original Post Data
wp_reset_postdata();