Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

GSM 2017 – Agenda Items

// WP_Query arguments
$args = array(
	'post_type'              => array( 'agenda_items' ),
	'post_status'            => array( 'publish' ),
	'nopaging'               => true,
	'paged'                  => '-1',
	'order'                  => 'ASC',
	'orderby'                => 'date',
	'meta_query'             => array(
		'relation' => 'AND',
		array(
			'key'     => 'agenda_business',
			'value'   => 'home',
			'compare' => '=',
			'type'    => 'CHAR',
		),
		array(
			'key'     => 'agenda_business',
			'value'   => 'cc',
			'compare' => '=',
			'type'    => 'CHAR',
		),
		array(
			'key'     => 'agenda_business',
			'value'   => 'mds',
			'compare' => '=',
			'type'    => 'CHAR',
		),
		array(
			'key'     => 'agenda_business',
			'value'   => 'int',
			'compare' => '=',
			'type'    => 'CHAR',
		),
	),
);

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