Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Query_coatrucks

// WP_Query arguments
$args = array(
	'page_id'                => 'true',
	'post_type'              => array( 'page' ),
	'nopaging'               => false,
	'posts_per_page'         => '20',
	'order'                  => 'ASC',
	'meta_query'             => array(
		'relation' => 'OR',
		array(
			'key'     => 'marca_field',
			'value'   => 'mercedes',
			'compare' => 'LIKE',
		),
		array(
			'key'     => 'marca_field',
			'value'   => 'renault',
			'compare' => 'LIKE',
		),
		array(
			'key'     => 'marca_field',
			'value'   => 'man',
			'compare' => 'LIKE',
		),
		array(
			'key'     => 'marca_field',
			'value'   => 'daf',
			'compare' => 'LIKE',
		),
	),
);

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

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

// Restore original Post Data
wp_reset_postdata();