我在 single.php 中添加了以下代码,以便在帖子顶部预览精选图片
<?php the_post_thumbnail('artist-top-thumb', array('class' => "img-responsive")); ?>
现在我想用原始图像的链接包装图像,所以当用户点击图像时,灯箱将显示完整的图像。我看了半网,但我找不到解决方案(或我用错误的条款搜索:))
我该怎么做?有可能吗?
谢谢:)
答案 0 :(得分:0)
不太清楚灯箱是什么意思,但要返回网址并在新窗口中打开:
<?php
$pic=wp_get_attachment_url( get_post_thumbnail_id($post->ID);
?>
<a href="<?php echo $pic;?" target="_blank"><img src="<?php echo $pic;?>"</a>