<?php
$arralubm = get_field('productsalbum');
if(!isset($arralubm)) $arralubm = [];
//pre($arralubm);
// $images = acf_photo_gallery('productsalbum', $post->ID);
// pre($images);
?>
---------------------
<ul class="products-details-image-slides">
<?php
if(count($arralubm)>0){
foreach ($arralubm as $key => $v) {
?>
<li><img src="<?php echo $v['url']?>" alt="<?php echo get_the_title()?>" /></li>
<?php
}
}
?>
</ul>
<div class="slick-thumbs">
<ul>
<?php
if(count($arralubm)>0){
foreach ($arralubm as $key => $v) {
?>
<li><img src="<?php echo $v['sizes']['thumbnail']?>" alt="image"></li>
<?php
}
}
?>
</ul>
-----------------------------------------------
-------------其他字段:------------------
<?php
$v = get_field('mechanical');
echo $v;
?>
---------------------------------