Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

asdasdasdasdasdasd

// WP_Term_Query arguments
$args = array(
	'taxonomy'               => array( 'discipline' ),
	'name'                   => array( 'bodem' ),
	'slug'                   => array( 'bodem' ),
	'meta_key'               => 'discipline',
);

// The Term Query
$jobs_vakgebied = new WP_Term_Query( $args );

// The Loop
if ( ! empty( $jobs_vakgebied ) && ! is_wp_error( $jobs_vakgebied ) ) {
	// do something
} else {
	// no terms found
}