Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

package OR meta

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'status',
		'value'   => 'client-verified',
		'compare' => 'LIKE',
	),
	array(
		'key'     => 'status',
		'value'   => 'coach-paid',
		'compare' => 'LIKE',
	),
);