Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

team webcup

// WP_Query arguments
$args = array(
	'post_type'              => array( 'team_webcup' ),
	'post_status'            => array( 'publish' ),
	'author'                 => '$capitaine_id',
);

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