-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-video.php
More file actions
35 lines (22 loc) · 859 Bytes
/
single-video.php
File metadata and controls
35 lines (22 loc) · 859 Bytes
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
<?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>
</div><!-- Category Head -->
<div class="row">
<div class="col-sm-12">
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
echo wp_oembed_get( get_post_meta( get_the_ID(), 'wpcf-video-url', true ) );
the_content();
endwhile;
?>
</div>
</div>
</div>
<?php get_footer();?>