File: //home/parsata2/.trash/project-gallery.php
<section class="o-section c-section--project-gallery">
<div class="o-section__wrapper">
<div class="c-project-gallery">
<div class="c-project-gallery__img">
<img
src="<?php echo (get_field('gallery')[0]) ? (get_field('gallery')[0]) : get_template_directory_uri() . '/assets/images/default.jpg' ?>"
alt="">
<img
src="<?php echo (get_field('gallery')[1]) ? get_field('gallery')[1] : get_template_directory_uri() . '/assets/images/default.jpg' ?>"
alt="">
<img
src="<?php echo (get_field('gallery')[2]) ? get_field('gallery')[2] : get_template_directory_uri() . '/assets/images/default.jpg' ?>"
alt="">
<img
src="<?php echo (get_field('gallery')[3]) ? get_field('gallery')[3] : get_template_directory_uri() . '/assets/images/default.jpg' ?>"
alt="">
</div>
<div class="c-project-gallery__video">
<?php if (get_field('video')): ?>
<video autoplay="" loop="" muted="" poster="" playsinline="">
<source src="<?php the_field('video'); ?>" type="video/mp4">
</video>
<?php else: ?>
<?php starter_theme_post_thumbnail(); ?>
<?php endif; ?>
</div>
<div class="c-project-gallery__img-list">
<ul>
<li>
<img
src="<?php echo (get_field('gallery')[4]) ? get_field('gallery')[4] : get_template_directory_uri() . '/assets/images/default.jpg' ?>"
alt="">
</li>
<li>
<img
src="<?php echo (get_field('gallery')[5]) ? get_field('gallery')[5] : get_template_directory_uri() . '/assets/images/default.jpg' ?>"
alt="">
<img
src="<?php echo (get_field('gallery')[6]) ? get_field('gallery')[6] : get_template_directory_uri() . '/assets/images/default.jpg' ?>"
alt="">
</li>
</ul>
<?php if (count(get_field('gallery')) > 7): ?>
<ul>
<?php $gallery = array_slice(get_field('gallery'), 7);
foreach ($gallery as $li) {
echo '<li><img src="' . $li . '"alt=""></li>';
}
?>
</ul>
<?php endif;
?>
<h3 class="h3-gallery">ویدئو های دیگر</h3>
<div class="c-project-gallery__video1">
<?php
$videos = ['video1', 'video2'];
foreach ($videos as $v):
$video_url = get_field($v);
$poster_url = get_field($v . '_poster');
if ($video_url): ?>
<video controls poster="<?php echo esc_url($poster_url); ?>" class="project-video">
<source src="<?php echo esc_url($video_url); ?>" type="video/mp4">
مرورگر شما ویدئو را پشتیبانی نمیکند.
</video>
<?php else: ?>
<?php starter_theme_post_thumbnail(); ?>
<?php endif; ?>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
</section>