We want to replace a slider with a clickable random image. So far I have half of this working using the below code that pulls one image from the ACF gallery and displays it.
我似乎无法找到的是,如何使用图像的习俗链条(如在把图像传入WP的媒体信条时所分配的),以便图像也能够被点击(在用户装上图像并分配所期望的习俗链接)。
Anyone have any idea how to get this to work?
Cheers!
<?php
$images = get_field( gallery , , false);
$size = full ;
$rand = array_rand($images ?? [null]);
if( $images ): ?>
<?php echo wp_get_attachment_image( $images[$rand], $size, "", $attr ); ?>
<?php endif; ?>