Current File : /home/quantums/durdanatariq.com/wp-content/themes/durdana/template-video.php |
<?php
/* Template Name: Video */
get_header();
?>
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
$image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'single-post-thumbnail' );
?>
<section class="featured-row">
<div class="container">
<div class="row">
<div class="inner-top-brand">
<img src="<?php echo get_template_directory_uri(); ?>/images/cropped-website41-1.png">
</div>
</div>
</div>
</section>
<section class="inner-banner" style="background-image: url(<?php echo $image[0] ?>);">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="inner-heading text-center">
<h2 class="tm-h2"> VIDEOS </h2>
<h4> CHECK OUT HOW DURDANA HAS HELPED 3,200+ PEOPLE TRANSFORM THEIR LIVES. </h4>
</div>
</div>
</div>
</div>
</section>
<section class="video-row custom-row">
<div class="container">
<div class="row">
<?php
$args = array(
'numberposts' => -1,
'offset' => 0,
'orderby' => 'post_date',
'order' => 'ASC',
'include' => '',
'exclude' => '',
'meta_key' => '',
'meta_value' => '',
'post_type' => 'our-video',
'post_status' => 'draft, publish, future, pending, private',
'suppress_filters' => true
);
$j = 1;
$banner = wp_get_recent_posts( $args, ARRAY_A );
foreach ( $banner as $banner ) {
$feature = get_post_meta($banner['ID'],'wpcf-feature-vide0',true);
$src = get_post_meta($banner['ID'],'wpcf-video-src',true);
?>
<div class="col-md-4">
<div class="video-box-panel">
<div class="video-box">
<video
id="vid<?php echo $j;?>"
class="video-js vjs-default-skin"
controls
width="" height=""
data-setup='{ "techOrder": ["youtube"], "sources": [{ "type": "video/youtube", "src": "<?php echo $src;?>"}] }'>
</video>
</div>
<div class="video-cotent">
<h5> <?php echo $banner['post_title'];?> </h5>
<p> <?php echo $banner['post_content'];?> </p>
</div>
</div>
</div>
<?php $j++;
}
?>
</div>
</div>
</section>
<?php
endwhile; // End of the loop.
?>
<?php
get_footer();