Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Call Productions by Venue

// WP_Query arguments
$args = array(
	'post_type'              => array( 'production' ),
	'post_status'            => array( 'publish' ),
	'meta_query'             => array(
		'relation' => 'AND',
		array(
			'key'     => 'venue',
			'value'   => 'ID',
		),
	),
);

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