获取自定义变量
//输出自定义字段title的值
<?php the_field('title','options'); ?>
//获取自定义字段title的值 <?php echo get_field('title','options'); ?>
遍历:复制记录集
<?php $rows = get_field('index_slide','options'); //全局变量加'options' if($rows) { foreach($rows as $row) { ?> <a href="<?php echo $row['url']; ?>" target="_blank"> <img src="<?php echo $row['img']; ?>" > </a> <?php } } ?>