Bitte überprüfen sie die Angaben zu Ihrem Referentenprofil. Korrekturen sowie ein Profilbild können Sie über das Formular einreichen.

Thomas Tischer
Erlangen, Deutschland
Malteser Waldkrankenhaus Erlangen
Prof. Dr. med. Thomas Tischer (MBA) is president of the GOTS and head of the clinic for orthopedics and trauma surgery at the Malteser Waldkrankenhaus in Erlangen. In addition to the treatment of athletes, the focus of his clinical work is arthroscopic and open knee and shoulder surgery. Current research interests include sports with endoprostheses, use of platelet-rich plasma for tissue regeneration, anterior cruciate ligament revisions, and prevention of sports injuries. Prof Tischer published over 140 pubmed listed articles and has held over 300 national and international presentations.
Vorsitz, Moderation, Podium
Session: Highlight Session 1
Tag: Donnerstag, 11.06.2026
Uhrzeit: 11:45 bis 12:30
Ort: Kongressaal (1. OG)
Tag: Donnerstag, 11.06.2026
Uhrzeit: 11:45 bis 12:30
Ort: Kongressaal (1. OG)
Session: GOTS-Mitgliederversammlung (inkl. Wahlen)
Tag: Donnerstag, 11.06.2026
Uhrzeit: 18:00 bis 18:30
Ort: Kongressaal (1. OG)
Tag: Donnerstag, 11.06.2026
Uhrzeit: 18:00 bis 18:30
Ort: Kongressaal (1. OG)
Vorträge
- Autologer Meniskusersatz – Meine Technik (Dauer: 5+1 min.)
Session: OP Technik 3 (Videosession)
Tag: Freitag, 12.06.2026
Zeitfenster: 08:30 bis 09:15
Ort: Kongressaal (1. OG) - Presidental Lecture (Dauer: 20+5 min.)
Session: Highlight Session 2
Tag: Freitag, 12.06.2026
Zeitfenster: 14:00 bis 15:15
Ort: Kongressaal (1. OG)
<?php
$post_id = get_the_ID();
echo '<h6 class="vorsitz-h6">Vorsitz, Moderation, Podium</h6>';
$vorsitz = false;
$args1 = array(
'posts_per_page' => -1,
'post_type' => 'session',
'meta_query' => array(
'relation' => 'AND',
's_tag' => array(
'key' => 'session_tag',
'compare' => 'EXISTS',
),
's_startzeit' => array(
'key' => 'session_startzeit',
'compare' => 'EXISTS',
)
),
'orderby' => array(
's_tag' => 'ASC',
's_startzeit' => 'ASC'
)
);
$the_query1 = new WP_Query($args1);
if($the_query1->have_posts() ) :
while($the_query1->have_posts() ) : $the_query1->the_post();
if(have_rows('session_vorsitz')) :
while(have_rows('session_vorsitz')) : the_row();
if(get_sub_field('referent') == $post_id) {
$vorsitz = true;
echo get_the_title(). ';' . get_field('session_tag')['label'] . ';' . get_field('session_startzeit') . ' Uhr bis ' . get_field('session_endzeit') . ' Uhr;' . get_field('session_raum')['label'] . ';';
}
endwhile;
endif;
endwhile;
endif;
wp_reset_query();
if($vorsitz) {
echo '<style>.vorsitz-h6 { display: block; }</style>';
} else {
echo '<style>.vorsitz-h6 { display: none; }</style>';
}
echo '<h6 class="programmpunkte-h6">Vorträge</h6>';
$programmpunkte = false;
/*Schulter Frakturen (2103), Syre (ID 1897) ergänzen*/
if(is_single(1897)) :
$syre = get_the_title(2103) . ';' . get_field('programm_sitzungstyp', 2103)['label'] . ';' . get_field('programm_tag', 2103)['label'] . ';' . get_field('programm_startzeit', 2103) . ' Uhr bis ' . get_field('programm_endzeit', 2103) . ' Uhr;' . get_field('programm_raum', 2103)['label'] . ';';
$programmpunkte = true;
else :
$syre = '';
endif;
$args2 = array(
'posts_per_page' => -1,
'post_type' => 'programmpunkt',
'meta_key' => 'programm_referent',
'meta_value' => $post_id
);
$the_query2 = new WP_Query($args2);
if($the_query2->have_posts() ) :
$programmpunkte = true;
while($the_query2->have_posts() ) : $the_query2->the_post();
echo get_the_title() . ';' . get_field('programm_sitzungstyp')['label'] . ';' . get_field('programm_tag')['label'] . ';' . get_field('programm_startzeit') . ' Uhr bis ' . get_field('programm_endzeit') . ' Uhr;' . get_field('programm_raum')['label'] . ';';
endwhile;
endif;
echo $syre;
wp_reset_query();
?>