add_action( 'init', 'create_post_type__team' );
function create_post_type__team() {
register_post_type( 'team',
array(
'labels' => array(
'name' => __( 'Team' ),
'singular_name' => __( 'Team hero' )
),
'public' => true,
'has_archive' => false,
'menu_icon' => 'dashicons-businessman',
'supports' => array('title', 'thumbnail')
)
);
}