-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
52 lines (29 loc) · 1.12 KB
/
single.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
<?php
get_header();?>
<div id="latest-work" class="latest-work container hover-section" style="margin-bottom:100px;">
<div class="category-head">
<h4><?php the_title();?></h4>
<div class="bars-animation">
<img src="<?php echo THEME_URL; ?>/dist/assets/img/elements/hicon.png" alt="PM">
</div>
<p><?php the_excerpt();?></p>
</div><!-- Category Head -->
<div class="row">
<div class="col-sm-6">
<p><i class="fa fa-calendar" aria-hidden="true"></i> <?php echo strftime("%A, %d %B", get_post_meta(get_the_id(), 'wpcf-date', true));?></p>
<p><i class="fa fa-user" aria-hidden="true"></i> <?php echo get_post_meta(get_the_id(), 'wpcf-event-author', true);?></p>
<p><i class="fa fa-phone" aria-hidden="true"></i> <?php echo get_post_meta(get_the_id(), 'wpcf-phone', true);?></p>
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
the_content();
endwhile;
?>
</div>
<div class="col-sm-6 full">
<?php the_post_thumbnail(get_the_id());?>
</div>
</div>
</div>
</div>
<?php get_footer();?>