repeater
unknown
php
4 years ago
924 B
27
Indexable
<?php $author_id = get_current_user_id(); ?>
<?php if( have_rows('employee_education', 'user_' . $author_id) ): ?>
<div>
<?php while( have_rows('employee_education', 'user_' . $author_id) ): the_row(); ?>
<div class='experience-wrap-1'>
<img src="http://www.communityconnectservices.com.au/wp-content/uploads/2021/12/Group-2144.svg" class='penyam'>
<div class='experience-wrap-2'>
<div class='experience_job_do'> <?php the_sub_field('education_uni'); ?> </div>
<div class='experience-wrap-3'>
<div class=' experience_com'> <?php the_sub_field('education_degree'); ?> <span> • </span> <?php the_sub_field('education_location'); ?></div>
<div class='experience_date'> <?php the_sub_field('education_date1'); ?> <span> - </span> <?php the_sub_field('education_date2'); ?> </div>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>Editor is loading...