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

<!-- project-area-->
    <section id="project" class="project-two pt-110 pb-120 fix">
        <div class="container">
            <div class="row justify-content-center align-items-center mb-50">
                <div class="col-xl-6 col-lg-10">
                    <div class="section-title text-left">
                        <h2><?php echo html_entity_decode($text_heading)?></h2>
                    </div>
                </div>
                 <div class="col-xl-6 col-lg-10 text-right">
                    <a href="<?php echo esc_url($button_link['url'])?>" class="btn ss-btn" data-animation="fadeInLeft" data-delay=".4s"><?php echo html_entity_decode($button_text)?></a>
                </div>
            </div>
            </div>
        <div class="container-fluid">
            <div class="row">
                 <?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-6">
                   <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>
                </div>
              <?php  endwhile;  ?>
            </div>
        </div>
    </section>
<!-- project-area-end -->
Back to Directory File Manager