Viewing File: /home/maglabs/valvtec1/wp-content/themes/indobi/inc/sections/portfolio/style1.php

<!-- project-area-->
<section id="project" class="project pt-20 pb-90 fix">
    <div class="container">
        <div class="row justify-content-center">
            <div class="col-xl-6 col-lg-10">
                <div class="section-title text-left mb-50">
                   <h2><?php echo html_entity_decode($text_heading)?></h2>
                </div>
            </div>
             <div class="col-xl-6 col-lg-10">

            </div>
        </div>
        </div>
    <div class="container-fluid">
        <div class="row portfolio-active">
          <?php $advanced= new wp_Query(array(
                    'post_type'=>'zcportfolio',
                    'posts_per_page' => $posts_per_page,
                    'category__in' => $category,
                  ));
                    while( $advanced->have_posts() ) : $advanced->the_post();
                    $terms_area = get_the_terms(get_the_id(),'category');
                    $terms   = array();
                    foreach($terms_area as $term) :
                    $terms[] = $term->slug;
                  ?>
                <?php endforeach; ?>
            <div class="col-xl-4">
                <div class="single-project mb-30 wow fadeInUp animated" data-animation="fadeInDown animated" data-delay=".2s">
                    <div class="project-thumb">                                   
                         <?php the_post_thumbnail(); ?>                                                    
                    </div>
                    <div class="project-info">
                         <?php the_excerpt()?>
                         <h4> <a href="<?php the_permalink() ?>"><?php the_title();  ?></a></h4>                          
                    </div>
                </div>
            </div>
            <?php  endwhile;  ?>
        </div>
    </div>
</section>
<!-- project-area-end -->
Back to Directory File Manager