rejuancse

movie-single

Dec 28th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 22.90 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Display Single Movie
  4.  *
  5.  * @author      Themeum
  6.  * @category    Template
  7.  * @package     Moview
  8.  *-------------------------------------------------------------*/
  9.  
  10. if ( ! defined( 'ABSPATH' ) )
  11.     exit; // Exit if accessed directly
  12.  
  13. get_header();
  14. ?>
  15.  
  16.  
  17. <section id="main" class="clearfix">
  18.  
  19. <?php
  20.     while ( have_posts() ) : the_post();
  21.  
  22.     $image_cover = get_post_meta($post->ID,'themeum_movie_image_cover', true);
  23.     $cover = '';
  24.     if ( $image_cover ) {
  25.         $cover_img   = wp_get_attachment_image_src($image_cover, 'full');
  26.         $cover = 'style="background-image:url('.esc_url($cover_img[0]).');background-repeat:no-repeat;background-size: cover;background-position: 50% 50%;"';
  27.     } else {
  28.         $cover = 'style="background-color: #333;"';
  29.     }
  30.     $release_date    = esc_attr(get_post_meta(get_the_ID(),'themeum_release_date',true));
  31.  
  32.     $release_year    = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_release_year',true));
  33.     $movie_type      = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_type',true));
  34.     $movie_length    = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_length',true));
  35.  
  36.     $movie_director  = get_post_meta(get_the_ID(),'themeum_movie_director');
  37.     $movie_actor     = get_post_meta(get_the_ID(),'themeum_movie_actor');
  38.     $movie_info      = get_post_meta(get_the_ID(),'themeum_movie_info',true);
  39.  
  40.  
  41.     $facebook_url       = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_facebook_url',true));
  42.     $twitter_url        = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_twitter_url',true));
  43.     $google_plus_url    = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_google_plus_url',true));
  44.     $youtube_url        = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_youtube_url',true));
  45.     $movie_vimeo_url    = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_vimeo_url',true));
  46.     $instagram_url      = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_instagram_url',true));
  47.     $website_url        = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_website_url',true));
  48.  
  49.     $movie_trailer_info     = get_post_meta(get_the_ID(),'themeum_movie_trailer_info',true);
  50.     $movie_showtimes_info   = get_post_meta(get_the_ID(),'themeum_showtimes_info',true);
  51.  
  52.     $theatre_name       = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_theatre_name',true));
  53.     $theatre_location   = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_theatre_location',true));
  54.     $show_time          = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_show_time',true));
  55.     $ticket_url         = esc_attr(get_post_meta(get_the_ID(),'themeum_movie_ticket_url',true));
  56.     ?>
  57.     <div class="moview-cover" <?php echo $cover;?>>
  58.         <div class="container">
  59.             <div class="row">
  60.                 <div class="col-sm-9 col-sm-offset-3">
  61.                     <div class="moview-info-warpper">
  62.                         <div class="moview-info">
  63.                             <div class="pull-left">
  64.                                 <h1><?php the_title(); if ($release_year) { echo ' ('.$release_year.')'; } ?></h1>
  65.  
  66.                                 <?php if ($movie_type) { ?> <span class="tag"><?php echo $movie_type; ?></span> | <?php }?> <?php if ($movie_length) { ?> <span class="movie-duration"><?php echo $movie_length; ?></span> <?php } ?>
  67.                            
  68.                                 <div class="rating-star">
  69.                                     <span><?php esc_html_e('Rating: ', 'themeum-core');?></span>
  70.                                             <?php
  71.                                                 if (function_exists('themeum_wp_rating')) {
  72.                                                     echo themeum_wp_rating(get_the_ID(),'with_html');
  73.                                                 }
  74.                                             ?>
  75.                                     <span class="moviedb-rating-summary"><?php  if (function_exists('themeum_wp_rating')) { echo themeum_wp_rating(get_the_ID(),'single'); } ?>/10</span>
  76.                                 </div> <!--//rating-star -->
  77.  
  78.                                 <?php if ( $facebook_url || $twitter_url || $google_plus_url || $youtube_url || $instagram_url || $website_url || $movie_vimeo_url ) { ?>
  79.                                     <div class="moview-social-icon">
  80.                                         <ul>
  81.                                             <?php if ( $facebook_url ) { ?>
  82.                                                 <li> <a class="facebook" href="<?php echo $facebook_url; ?>"> <i class="fa fa-facebook"></i> </a> </li>
  83.                                             <?php } ?>
  84.                                             <?php if ( $twitter_url ) { ?>
  85.                                                 <li> <a class="twitter" href="<?php echo $twitter_url; ?>"> <i class="fa fa-twitter"></i> </a> </li>
  86.                                             <?php } ?>                                         
  87.                                             <?php if ( $google_plus_url ) { ?>
  88.                                                 <li> <a class="googleplus" href="<?php echo $google_plus_url; ?>">  <i class="fa fa-google-plus"></i> </a> </li>
  89.                                             <?php } ?>                                         
  90.                                             <?php if ( $youtube_url ) { ?>
  91.                                                 <li> <a class="youtube" href="<?php echo $youtube_url; ?>">  <i class="fa fa-youtube"></i> </a> </li>
  92.                                             <?php } ?>                                         
  93.                                             <?php if ( $movie_vimeo_url ) { ?>
  94.                                                 <li> <a class="vimeo" href="<?php echo $movie_vimeo_url; ?>">  <i class="fa fa-vimeo"></i> </a> </li>
  95.                                             <?php } ?>                                         
  96.                                             <?php if ( $instagram_url ) { ?>
  97.                                                 <li> <a class="instagram" href="<?php echo $instagram_url; ?>">  <i class="fa fa-instagram"></i> </a> </li>
  98.                                             <?php } ?>                                         
  99.                                             <?php if ( $website_url ) { ?>
  100.                                                 <li> <a class="globe" href="<?php echo $website_url; ?>">  <i class="fa fa-globe"></i> </a> </li>
  101.                                             <?php } ?>
  102.                                         </ul>
  103.                                     </div> <!-- //social-icon -->
  104.                                 <?php } ?>
  105.  
  106.                             </div> <!-- //pull-left -->
  107.                             <div class="pull-right count-rating-wrapper">
  108.                                 <div class="count-rating">
  109.                                     <span><?php  if (function_exists('themeum_wp_rating')) { echo themeum_wp_rating(get_the_ID(),'single'); } ?></span>
  110.                                 </div>
  111.                             </div> <!-- //right -->
  112.                         </div> <!--//moview-info-->
  113.                         <div class="clearfix"></div>
  114.                     </div> <!--//moview-info-warpper-->
  115.                 </div> <!--//col-sm-9-->
  116.             </div> <!--//row-->
  117.         </div> <!--//container-->
  118.     </div> <!--//moview-cover-->
  119.  
  120.  
  121.     <div class="moview-details-wrap">
  122.         <div class="container" >
  123.             <div class="row">
  124.                 <div class="moview-wapper-total">
  125.                     <div id="moview-info-sidebar" class="col-sm-3 moview-info-sidebar">
  126.                         <div class="img-wrap">
  127.                            
  128.                             <?php if ( has_post_thumbnail() && ! post_password_required() ) { ?>
  129.                                 <div class="item-img">
  130.                                 <?php the_post_thumbnail('moview-profile', array('class' => 'img-responsive')); ?>
  131.                                 </div> <!--/.item-img-->
  132.                             <?php } //.entry-thumbnail ?>
  133.                            
  134.                             <div class="details-wrapper">
  135.                                 <h3 class="title"><?php esc_html_e('Movie Info', 'themeum-core');?></h3>
  136.                                 <ul class="list-style-none list-inline">
  137.  
  138.                                     <?php if( is_array(($movie_director)) ) { ?>
  139.                                         <?php if(!empty($movie_director)) { ?>
  140.                                             <li class="director">
  141.                                                 <span><?php esc_html_e('Director:', 'themeum-core');?></span>
  142.                                                 <?php $posts_id = array();
  143.                                                   foreach ( $movie_director as $value ) {
  144.                                                     $posts = get_posts(array('post_type' => 'celebrity', 'name' => $value));
  145.                                                     $posts_id[] = $posts[0]->ID;
  146.                                                   }
  147.                                                   $movie_director = get_posts( array( 'post_type' => 'celebrity', 'post__in' => $posts_id, 'posts_per_page'   => 20) );
  148.                                                 ?>
  149.                                                 <?php foreach ($movie_director as $key=>$post) {
  150.                                                 setup_postdata( $post ); ?>
  151.                                                     <a href="<?php echo get_permalink($post->ID);?>"><?php the_title(); ?></a>
  152.                                                 <?php } ?>
  153.                                                 <?php wp_reset_postdata(); ?>
  154.                                             </li>
  155.                                         <?php } ?>
  156.                                     <?php } ?>                                 
  157.  
  158.                                     <?php if( is_array(($movie_actor)) ) { ?>
  159.                                         <?php if(!empty($movie_actor)) { ?>
  160.                                             <li class="actors">
  161.                                                 <span><?php esc_html_e('Actors:', 'themeum-core');?></span>
  162.                                                 <?php $posts_id = array();
  163.                                                   foreach ( $movie_actor as $value ) {
  164.                                                     $posts = get_posts(array('post_type' => 'celebrity', 'name' => $value, 'order' => 'ASC'));
  165.                                                     $posts_id[] = $posts[0]->ID;
  166.                                                   }
  167.                                                   $movie_actor = get_posts( array( 'post_type' => 'celebrity', 'post__in' => $posts_id, 'posts_per_page'   => 20, 'order' => 'ASC') );
  168.                                                 ?>
  169.                                                 <?php foreach ($movie_actor as $key=>$post) {
  170.                                                 setup_postdata( $post ); ?>
  171.                                                     <a href="<?php echo get_permalink($post->ID);?>">
  172.                                                         <?php
  173.                                                             the_title();
  174.                                                             $total = count($movie_actor);
  175.                                                             if ( isset($total) && !empty($total)) {
  176.                                                                 if ( $total !== ($key + 1) ) {
  177.                                                                     echo ", ";
  178.                                                                 }else{
  179.                                                                     echo " ";
  180.                                                                 }
  181.                                                             }
  182.                                                         ?>
  183.                                
  184.                                                     </a>
  185.                                                 <?php } ?>
  186.                                                 <?php wp_reset_postdata(); ?>
  187.                                             </li>
  188.                                         <?php } ?>
  189.                                     <?php } ?>
  190.                                    
  191.                                     <?php if( is_array(($movie_info)) ) { ?>
  192.                                         <?php if(!empty($movie_info)) { ?>
  193.    
  194.                                             <li class="common-list">
  195.                                                 <span><?php echo 'Release Date: ';?></span>
  196.                                                 <?php echo date_i18n("d M, ", strtotime($release_date)); ?> <?php echo date_i18n("Y", strtotime($release_date)) ?>
  197.                                             </li>
  198.  
  199.                                             <?php foreach( $movie_info as $value ){ ?>
  200.                                                 <li class="common-list">
  201.                                                     <span><?php echo esc_attr($value["themeum_movie_info_type"]);?></span>
  202.                                                     <?php echo esc_attr($value["themeum_movie_info_description"]);?>
  203.                                                 </li>
  204.                                             <?php } ?>
  205.                                         <?php } ?>
  206.                                     <?php } ?>
  207.                                 </ul>                      
  208.                             </div> <!--//details-wrapper -->
  209.                         </div> <!--//img-wrap-->
  210.                     </div> <!--//moview-info-sidebar -->
  211.  
  212.                     <div class="col-sm-9 movie-info-warpper">
  213.                         <!-- movie-details -->
  214.                         <div class="moview-details">
  215.                             <div class="header-title">
  216.                                 <span><i class="themeum-moviewbook"></i></span> <h3 class="title"><?php esc_html_e('Movie Story', 'themeum-core');?></h3>
  217.                             </div>
  218.                             <div class="moview-details-text">
  219.                                 <?php the_content(); ?>                        
  220.                             </div>
  221.                             <div class="social-shares">
  222.                                 <div class="social-share-title"><?php _e('Share','themeum-core'); ?>:</div>
  223.                                 <?php echo themeum_social_share(get_the_ID()); ?>
  224.                             </div>
  225.                         </div> <!-- //movie-details -->
  226.  
  227.                         <?php if( is_array(($movie_trailer_info)) ) {
  228.                               if(!empty($movie_trailer_info)) {
  229.                               if( !empty( $movie_trailer_info[0]['themeum_video_info_title'] ) ){
  230.                                 ?> 
  231.                             <div class="trailers-videos"> <!-- start trailers-videos -->
  232.                                 <div class="header-title">
  233.                                     <span><i class="themeum-moviewcamera"></i></span>
  234.                                     <h3 class="title"><?php esc_html_e('Trailers & Videos', 'themeum-core');?></h3>
  235.                                 </div>
  236.                                 <div class="row">
  237.                                     <?php
  238.                                     $i = 1;
  239.                                     if(is_array( $movie_trailer_info )){
  240.                                         if(!empty( $movie_trailer_info )){
  241.                                             foreach( $movie_trailer_info as $value ){
  242.                                                
  243.                                                 if ( $i == '1' ) {
  244.                                                     if(isset( $value["themeum_video_trailer_image"] )) {
  245.                                                     $image = $value["themeum_video_trailer_image"];
  246.                                                     $trailer_image   = wp_get_attachment_image_src($image[0], 'moview-medium'); ?>
  247.                                                     <div class="trailer-item leading col-sm-12">
  248.                                                         <div class="trailer">
  249.                                                             <div class="trailer-image-wrap">
  250.                                                                 <?php if ($trailer_image[0]!='') { ?>
  251.                                                                     <img class="img-responsive" src="<?php echo $trailer_image[0];?>" alt="<?php esc_html_e('trailers', 'themeum-core');?>">
  252.                                                                     <?php } else{ ?>
  253.                                                                         <div class="trailer-no-video"></div>
  254.                                                                 <?php }?>
  255.                                                                 <a class="play-video" href="<?php echo $value["themeum_video_link"];?>" data-type="<?php echo $value["themeum_video_source"]; ?>">
  256.                                                                     <i class="play-icon themeum-moviewplay"></i>
  257.                                                                 </a>
  258.                                                                 <div class="content-wrap">
  259.                                                                     <div class="video-container">
  260.                                                                         <span class="video-close">x</span>
  261.                                                                     </div>
  262.                                                                 </div>
  263.                                                             </div> <!-- trailer-image-wrap -->
  264.                                                             <div class="trailer-info trailers-info">
  265.                                                                 <div class="trailer-info-block">
  266.                                                                     <?php if ( has_post_thumbnail() && ! post_password_required() ) { ?>
  267.                                                                         <?php the_post_thumbnail('moview-small', array('class' => 'img-responsive thumb-img')); ?>
  268.                                                                     <?php } //.entry-thumbnail ?>                                                          
  269.                                                                     <h4 class="movie-title"><?php echo esc_attr($value["themeum_video_info_title"]);?></h4>
  270.                                                                     <p class="genry"><?php echo $movie_type; ?></p>
  271.                                                                 </div>
  272.                                                             </div>
  273.                                                         </div>
  274.                                                     </div> <!--//trailer-item-->
  275.  
  276.                                                 <?php } } else {
  277.                                                     if(isset($value["themeum_video_trailer_image"])){
  278.                                                     $image = $value["themeum_video_trailer_image"];
  279.                                                     $trailer_image   = wp_get_attachment_image_src($image[0], 'moview-trailer');
  280.                                                     ?>
  281.                                                     <div class="trailer-item subleading col-sm-4">
  282.                                                         <div class="trailer">
  283.                                                             <div class="trailer-image-wrap">
  284.                                                                 <?php if ($trailer_image[0]!='') { ?>
  285.                                                                 <img class="img-responsive" src="<?php echo $trailer_image[0];?>" alt="<?php esc_html_e('trailers', 'themeum-core');?>">
  286.                                                                 <?php } else{ ?>
  287.                                                                 <div class="trailer-smail-no-video"></div>
  288.                                                                 <?php }?>
  289.                                                                 <a class="play-video" href="<?php echo $value["themeum_video_link"];?>" data-type="<?php echo $value["themeum_video_source"]; ?>">
  290.                                                                     <i class="play-icon themeum-moviewplay"></i>
  291.                                                                 </a>
  292.                                                             </div> <!-- trailer-image-wrap -->
  293.                                                             <div class="trailer-info sp-trailers-info">
  294.                                                                 <div class="trailer-info-block">
  295.                                                                     <h4 class="movie-title"><?php echo esc_attr($value["themeum_video_info_title"]);?></h4>
  296.                                                                 </div>
  297.                                                             </div>
  298.  
  299.                                                         </div>
  300.                                                     </div> <!--//trailer-item-->
  301.                                                 <?php }
  302.                                                 }
  303.                                                 $i++;
  304.                                             }
  305.                                         }
  306.                                     }
  307.                                     ?>
  308.                                 </div> <!-- //row -->
  309.                             </div> <!-- //trailers-videos -->
  310.                         <?php } ?>
  311.                         <?php } ?>
  312.                         <?php } ?> 
  313.                        
  314.                         <?php
  315.                             if ( comments_open() || get_comments_number() ) {
  316.                                 if ( isset($themeum_options['blog-single-comment-en']) && $themeum_options['blog-single-comment-en'] ) {
  317.                                    comments_template();
  318.                                 }
  319.                             }
  320.                         ?>
  321.  
  322.                        
  323.                        
  324.                             <?php
  325.                            
  326.                             if(is_array($movie_showtimes_info)){
  327.                                 if(!empty( $movie_showtimes_info )){
  328.                                     if($movie_showtimes_info[0]['themeum_movie_theatre_name'] != ""){
  329.                             ?>
  330.  
  331.                             <!-- Movie Showtime -->
  332.                             <div class="movie-showtime">
  333.                             <div class="header-title">
  334.                                 <span><i class="themeum-moviewpopcorn"></i></span> <h3 class="title"><?php esc_html_e('Movie Showtimes', 'themeum-core');?></h3>
  335.                             </div>
  336.                             <?php
  337.                                 foreach ( $movie_showtimes_info as $value) {
  338.                                     if( $value['themeum_movie_theatre_name'] != '' ){
  339.                                 ?>
  340.                                     <div class="movie-schedule row">
  341.                                         <div class="col-sm-4 location">
  342.                                             <p class="location-name"><?php echo $value['themeum_movie_theatre_name']; ?></p>
  343.                                             <p class="address"><i class="fa fa-map-marker"></i> <?php echo $value['themeum_movie_theatre_location']; ?></p>
  344.                                         </div>
  345.                                         <div class="col-sm-8">
  346.                                             <div class="times pull-left">
  347.                                                 <p class="visible-xs show-time">Show times</p>
  348.                                                 <?php
  349.                                                     $time = $value['themeum_movie_show_time'];
  350.                                                     if($time!=""){
  351.                                                         echo '<ul class="list-style-none list-inline">';
  352.                                                         $time = explode(",", $time);
  353.                                                         foreach ($time as $var) {
  354.                                                             echo '<li><span>'.$var.'</span></li>';
  355.                                                         }
  356.                                                         echo '</ul>';
  357.                                                     }
  358.                                                 ?>
  359.                                             </div>
  360.                                             <div class="ticket-urls pull-right">
  361.                                                 <?php if( $value['themeum_movie_ticket_url'] != '' ){ ?>
  362.                                                 <a href="<?php echo $value['themeum_movie_ticket_url']; ?>" class="btn btn-primary buy-ticket" target="_blank">
  363.                                                     <i class="icon-ticket"></i><?php _e('Buy Ticket','themeum-core'); ?>
  364.                                                 </a>
  365.                                                 <?php } ?>
  366.                                             </div>
  367.                                         </div>
  368.                                     </div> <!-- //movie-schedule -->
  369.                                     <div class="clearfix"></div>
  370.                                 <?php
  371.                                 }
  372.                                 }
  373.                             ?>
  374.                             </div> <!-- //Movie Showtime -->
  375.                             <?php
  376.                                     }
  377.                                 }
  378.                             }
  379.                             ?>
  380.  
  381.                             <!-- Recommend movies -->
  382.                             <div class="moview-common-layout recommend-movies">
  383.                                 <div class="header-title">
  384.                                     <span><i class="themeum-moviewlike"></i></span> <h3 class="title"><?php _e( 'Recommend movies','themeum-core' ); ?></h3>
  385.                                 </div>
  386.                                 <div class="row">
  387.                                     <?php
  388.                                    
  389.  
  390.                                     $terms = get_the_terms( $post->ID , 'movie_tag', 'themeum-core');
  391.                                     $term_ids = wp_list_pluck($terms,'term_id');
  392.  
  393.  
  394.                                     $arr = new WP_Query(
  395.                                         array(
  396.                                             'post_type' => 'movie',
  397.                                             'tax_query' => array(
  398.                                                         array(
  399.                                                             'taxonomy'  => 'movie_tag',
  400.                                                             'field'     => 'id',
  401.                                                             'terms'     => $term_ids,
  402.                                                             'operator'  => 'IN'
  403.                                                          )),
  404.                                             'posts_per_page'            => 3,
  405.                                             'ignore_sticky_posts'       => 1,
  406.                                             'post__not_in'              =>array($post->ID)
  407.                                         )
  408.                                     );
  409.  
  410.                                     if($arr->have_posts()) {
  411.                                     while ($arr->have_posts() ) : $arr->the_post();
  412.  
  413.                                     $movie_trailer_info2 = get_post_meta(get_the_ID(),'themeum_movie_trailer_info',true); ?>
  414.  
  415.                                         <div class="item col-sm-4 col-xs-12">
  416.                                             <div class="movie-poster">
  417.                                                 <?php the_post_thumbnail('moview-profile', array('class' => 'img-responsive')); ?>
  418.                                                 <?php if( is_array(($movie_trailer_info2)) ) {
  419.                                                         if(!empty($movie_trailer_info2)) {
  420.                                                             foreach( $movie_trailer_info2 as $key=>$value ){
  421.                                                                 if ($key==0) {
  422.                                                                     if ($value["themeum_video_link"]) { ?>
  423.                                                                         <a class="play-icon play-video" href="<?php echo $value["themeum_video_link"];?>" data-type="<?php echo $value["themeum_video_source"];?>">
  424.                                                                         <i class="themeum-moviewplay"></i>
  425.                                                                         </a>
  426.                                                                         <div class="content-wrap">
  427.                                                                             <div class="video-container">
  428.                                                                                 <span class="video-close">x</span>
  429.                                                                             </div>
  430.                                                                         </div>
  431.                                                                     <?php }  else { ?>
  432.                                                                         <a class="play-icon" href="<?php echo get_permalink();?>">
  433.                                                                         <i class="themeum-moviewenter"></i>
  434.                                                                         </a>
  435.                                                                     <?php }
  436.                                                                 }
  437.                                                             }
  438.                                                         }
  439.                                                 }
  440.                                                 ?>
  441.                                             </div>
  442.                                             <div class="movie-details">
  443.                                                 <div class="movie-rating-wrapper">
  444.                                                 <?php if (function_exists('themeum_wp_rating')) { ?>
  445.                                                     <div class="movie-rating">
  446.                                                         <span class="themeum-moviewstar active"></span>
  447.                                                     </div>
  448.                                                     <span class="rating-summary"><span><?php echo themeum_wp_rating(get_the_ID(),'single');?></span>/10</span>
  449.                                                 <?php }?>
  450.                                                 </div>
  451.                                                 <div class="movie-name">
  452.                                                     <h4 class="movie-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
  453.                                                 </div>
  454.                                             </div>
  455.                                         </div>
  456.  
  457.                                     <?php
  458.                                     endwhile;
  459.                                     wp_reset_query();
  460.                                 }
  461.                                     ?>
  462.                                 </div> <!-- //row -->
  463.                             </div> <!-- //Recommend movies -->
  464.                         </div> <!-- //col-sm-9 -->
  465.                    
  466.                 </div><!--/#post-->
  467.             </div><!--/.row-->
  468.         </div><!--/.container-->
  469.     </div><!--/.moview-details-wrap-->
  470. <?php endwhile; ?>
  471. </section>
  472.  
  473. <?php get_footer();
Add Comment
Please, Sign In to add comment