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

<!-- gallery-area -->
<section id="work" class="pt-120 pb-105 fix">
    <div class="container-fluid"> 
        <div class="row">
            <div class="col-lg-12">
                <div class="masonry-gallery-huge">
            <div class="grid col2">
                  <?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="grid-item hover-zoomin financial">   
                   <a href="<?php the_permalink() ?>">
                        <figure class="gallery-image">
                           <?php the_post_thumbnail(); ?>        
                            <figcaption>
                                <h4><?php the_title();  ?> </h4>
                                <?php the_excerpt()?>
                            </figcaption>
                        </figure>
                    </a>
                </div>
                <?php  endwhile;  ?>
                </div>
            </div>

            </div>

        </div>

    </div>
</section>
 <!-- gallery-area-end -->
Back to Directory File Manager