我正在尝试使用ACF中继器在wordpress网站上调用随机图像

时间:2015-05-28 13:41:12

标签: php wordpress advanced-custom-fields

这是我的代码,如上所述 - 我试图让单个图片在转发器元素的预制div内回声。尽管在网站上直接使用了这个例子,但我还是希望得到一些帮助。

<?php 

$repeater = get_field('left_column_repeater' ); // get all the rows
$rand_row = $repeater[ array_rand( $repeater ) ]; // get a random row
$rand_row_image = $rand_row['left_column_image' ]; // get the sub field value 

// Note
// $first_row_image = 123 (image ID)

$image = wp_get_attachment_image_src( $first_row_image, 'full' );

// url = $image[0];
// width = $image[1];
// height = $image[2]; ?>

<div class="circular" style="background-image: url('<?php echo $image[0]; ?>');"> </div>

我哪里出错了?

0 个答案:

没有答案