Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Get user with meta data

$user_meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => '_user_type',
		'value'   => 'sellers',
		'compare' => '=',
		'type'    => 'CHAR',
	),
	array(
		'key'     => '_status_type',
		'value'   => 'Online',
		'compare' => '=',
		'type'    => 'CHAR',
	),
);