-
Notifications
You must be signed in to change notification settings - Fork 19
/
single-speaker.php
62 lines (58 loc) · 2.24 KB
/
single-speaker.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php get_header(); ?>
<div class="container spacing-top">
<div class="row">
<div class="col-md-12">
<div class="post-content">
<?php if (have_posts()): while (have_posts()) : the_post(); ?>
<?php
$speaker = get_post();
$video_id = get_post_meta($speaker->ID, '_speaker_video_id', true);
$image = wp_get_attachment_image_src(get_post_thumbnail_id($speaker->ID), 'speaker');
if (is_array($image) && !empty($image[0])) { $image = $image[0]; }
$name = $speaker->post_title;
$excerpt = $speaker->post_excerpt;
?>
<div class="page-header">
<h2><?php the_title(); ?>
<small><?= $excerpt ?></small>
</h2>
</div>
<?php if (!empty($video_id)): ?>
<div class="feature-image">
<div class="video-container">
<iframe width="100%" height="100%" src="//www.youtube.com/embed/<?= $video_id ?>" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<?php endif; ?>
<div class="user-generated-content">
<div class="row">
<div class="col-xs-12 col-sm-4 col-md-3 col-lg-3" style="text-align: center">
<img src="<?= $image; ?>" alt="" style="margin-bottom: 30px"/>
</div>
<div class="col-xs-12 col-sm-6 col-md-9 col-lg-9">
<?php the_content(); ?>
</div>
</div>
</div>
<div class="row" style="margin-bottom: 60px">
<div class="col-md-6"></div>
<div class="col-md-6">
<div class="pull-right">
<span class="social social-facebook">
<div class="fb-like" data-href="<?= get_permalink($speaker->ID); ?>" data-layout="button" data-action="like" data-show-faces="true" data-share="true"></div>
</span>
<span class="social social-twitter">
<a href="https://twitter.com/share" class="twitter-share-button" data-via="<?= get_theme_mod('twitter_account') ?>">Tweet</a>
</span>
</div>
</div>
</div>
<?php endwhile; endif; ?>
</div>
</div>
<!-- <div class="col-md-3">-->
<?php //get_sidebar('speaker'); ?>
<!-- </div>-->
</div>
</div>
<?php get_footer(); ?>