xxxxxxxxxx
// Team Section Name, Designation and Image group
array(
'id' => 'teams',
'type' => 'group',
'title' => 'Teams Name, Designation, Image',
'fields' => array(
array(
'id' => 'name',
'type' => 'text',
'title' => 'Enter Name',
),
array(
'id' => 'designation',
'type' => 'text',
'title' => 'Enter Designation',
),
array(
'id' => 'team_member_image',
'type' => 'media',
'button_title' => 'Upload Image',
'placeholder' => 'Upload Image',
),
array(
'id' => 'team_social_icon',
'type' => 'group',
'title' => 'Team Social Icon',
'fields' => array(
array(
'id' => 'social_icon',
'type' => 'icon',
'title' => 'Add Social Icon',
),
),
),
)
)
Output
<?php
$teams = $halim_options['teams'];
foreach($teams as $team):
?>
<div class="col-md-4">
<div class="single-team">
<!-- team members image here -->
<img src="<?php echo esc_attr($team['team_member_image']['url'],'halim');?>" alt="" />
<div class="team-hover">
<div class="team-content">
<!-- team members name and designation here -->
<h4><?php echo esc_html($team['name'],'halim');?> <span><?php echo esc_html($team['designation'],'halim');?></span></h4>
<ul>
<?php foreach($team['team_social_icon'] as $member_icon): ?>
<li><a href="#"><i class="<?php echo $member_icon['social_icon']; ?>"></i></a></li>
<?php endforeach;?>
</ul>
</div>
</div>
</div>
</div>
<?php endforeach;?>