Viewing File: /home/maglabs/valvtec1/wp-content/themes/indobi/inc/sections/team-two.php
<?php
$data = indobi_el()->merge_options([
'service_section_var1' => [],
], $data);
?>
<!-- team-area -->
<section id="team" class="team-area2 pt-120 pb-90">
<div class="container">
<div class="row">
<?php $advanced= new wp_Query(array(
'post_type'=>'team',
'posts_per_page' => $data['posts_per_page'],
));
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-3 col-md-6">
<div class="single-team mb-40" >
<div class="team-thumb">
<div class="brd">
<?php the_post_thumbnail(); ?>
</div>
</div>
<div class="team-info">
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<p>
<?php
$teamposition = rwmb_meta('indobizc_post_team_postions');
echo html_entity_decode ($teamposition);
?>
</p>
<div class="team-social">
<?php
$postsocial = rwmb_meta('indobizc_post_social');
echo html_entity_decode ($postsocial);
?>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
</section>
<!-- team-area-end -->
Back to Directory
File Manager