20 lines
617 B
PHP
20 lines
617 B
PHP
<?php
|
|
|
|
$tpc_tp_event_speakers = get_the_terms( get_the_ID(), 'tp_event_speaker' );
|
|
|
|
$tp_event_speaker_title = Upstudy::setting( 'tp_event_speaker_title' );
|
|
$tp_event_speaker_layout = Upstudy::setting( 'tp_event_speaker_layout' );
|
|
|
|
if ( is_array( $tpc_tp_event_speakers ) ) :
|
|
echo '<div class="tpc-event-speaker-section">';
|
|
|
|
echo '<h3 class="heading-title">' . esc_html($tp_event_speaker_title) . '</h3>';
|
|
|
|
echo '<div class="upstudy-row">';
|
|
|
|
get_template_part( 'wp-events-manager/tpl-part/speaker', $tp_event_speaker_layout );
|
|
|
|
echo '</div>';
|
|
|
|
echo '</div>';
|
|
endif; |