File: /home/u547966/brikov.ru/www/wp-content/themes/brikov/templates/gallery.php
<?php
/*
Template Name: Галерея
*/
?>
<!DOCTYPE html>
<body class="body-index">
<?php get_header(); ?>
<div class="test">
<?php
$images = get_field('images');
$size = 'full'; // (thumbnail, medium, large, full or custom size)
if( $images ): ?>
<ul>
<?php foreach( $images as $image ): ?>
<li>
<?php echo wp_get_attachment_image( $image['149'], $size ); ?>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?> </div>
<div class="gellry-grid">
<?php
$images = get_field('gallery', 90);
if( $images ): ?>
<?php foreach( $images as $image ): ?>
<div class="gellry-grid-image">
<a href="<?php echo $image['url']; ?>">
<img src="<?php echo $image['sizes']['thumbnail']; ?>" alt="<?php echo $image['alt']; ?>" />
</a>
</div>
<?php endforeach; ?>
<?php endif; ?></div>
<?php get_footer() ?>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
</body>
</html>