我正在编写自定义主题,我想将自定义大小的缩略图图像链接到图像的全尺寸(或大)版本。
我正在使用的代码是:
<?php
$attachment_id = get_field('main_product_photo');
$size = "main-product-thumb"; // (thumbnail, medium, large, full or custom size)
wp_get_attachment_image( $attachment_id, $size );
$image = wp_get_attachment_image_src( $attachment_id, $size );
// url = $image[0];
// width = $image[1];
// height = $image[2];
?>
<a href="<?php echo $image[0]; ?>"><img src="<?php echo $image[0]; ?>"></a>
但是,这只是链接到我的缩略图大小的图像。有没有人可以快速解决这个问题?谢谢!