mage-eventpress/templates/single-speaker.php

17 lines
363 B
PHP
Raw Normal View History

2020-04-28 06:37:33 -04:00
<?php
get_header();
the_post();
?>
<div class="mep_events_speaker_wraper">
<div class="mep_speaker_thumbnail">
<?php the_post_thumbnail('full'); ?>
</div>
<div class="mep_speaker_name">
<h2><?php the_title(); ?></h2>
</div>
<div class="mep_speaker_details">
<?php the_content(); ?>
</div>
</div>
<?php
get_footer();