Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Usuarios Full

// WP_User_Query arguments
$args = array(
	'role'           => 'Editor',
	'include'        => array( 1,2 ),
	'exclude'        => array( 3,5 ),
	'blog_id'        => '2',
	'search'         => 'texto libre',
	'search_columns' => array( 'user_email', 'user_login', 'user_nicename' ),
	'number'         => '10',
	'order'          => 'ASC',
	'orderby'        => 'display_name',
	'count_total'    => true,
	'fields'         => 'all',
);

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

// The User Loop
if ( ! empty( $user_query->results ) ) {
	foreach ( $user_query->results as $user ) {
		// do something
	}
} else {
	// no users found
}