Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

// WP_Query arguments
$args = array(
	'post_type'              => array( 'cpt_job_referrer' ),
	'post_status'            => array( 'publish' ),
	'posts_per_page'         => '6',
	'tax_query'              => array(
		'relation' => 'AND',
		array(
			'taxonomy'         => 'cvl_job_status',
			'terms'            => 'live',
			'field'            => 'slug',
			'include_children' => false,
		),
	),
);

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