Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
themes
/
luxia
/
inc
/
sections
/
portfolio
/
✏️
Editing: style3.php
<!-- case-study --> <section id="case-study" class="case-studye-area pt-100 pb-70 fix" > <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="section-title center-align mb-50"> <h5><span class="line2"> <img src="<?php echo esc_url( $left_image ['url'] ) ?>" alt="<?php echo esc_url( $left_image ['url'] ) ?>"> </span> <?php echo html_entity_decode($text_heading)?> </h5> <h2> <?php echo html_entity_decode($sub_heading)?> </h2> </div> </div> </div> <div class="row home-blog-active"> <?php $advanced= new wp_Query(array( 'post_type'=>'portfolio', 'posts_per_page'=>-1 )); while( $advanced->have_posts() ) : $advanced->the_post(); $terms_area = get_the_terms(get_the_id(),'portfolio_category'); $terms = array(); foreach($terms_area as $term) : $terms[] = $term->slug; ?> <?php endforeach; ?> <div class="col-lg-4 col-md-12"> <div class="case-study-box mb-30"> <div class="case-study-img"> <a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail(); ?> </a> </div> <div class="case-study-content"> <span><a href="<?php the_permalink(); ?>"><?php echo implode('<span class="dot">,</span>',$terms); ?></a></span> <h5><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5> </div> </div> </div> <?php endwhile; ?> </div> </div> </section> <!-- case-study-end -->
💾 Save
❌ Cancel