Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Test Search

// WP_Query arguments
$args = array(
	'post_type'              => array( 'aeen_team' ),
	'post_status'            => array( 'publish' ),
	's'                      => '$nome',
	'posts_per_page'         => '-1',
	'orderby'                => 'rand',
);

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