Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

userscurso

// WP_User_Query arguments
$args = array(
	'role'           => 'Subscriber',
	'number'         => '20',
	'offset'         => '20',
	'meta_query'     => array(
		'relation' => 'AND',
		array(
			'key'     => 'puesto',
			'value'   => 'DIRECTOR GENERAL',
			'compare' => 'LIKE',
		),
		array(
			'key'     => 'departamento',
			'value'   => 'DIRECCION GENERAL',
			'compare' => 'LIKE',
		),
		array(
			'key'     => 'plaza',
			'value'   => 'HERMOSILLO',
		),
		array(
			'key'     => 'nombre',
			'value'   => 'JOSE ANTONIO',
			'compare' => 'LIKE',
		),
	),
	'fields'         => array( 'numeroempleado', 'first_name', 'last_name', 'apellido_materno', 'apellido_paterno', 'user_email', 'email' ),
);

// The User Query
$user_query = new WP_User_Query( $args );