// in functions.php
// get template part
function oe_team_shortcode( $attr ) {
ob_start();
get_template_part( 'team-part' );
return ob_get_clean();
}
add_shortcode( 'team', 'oe_team_shortcode' );
// create file in directory called
team-part.php
// use shortcode
[team]