我有一个使用TimThumb创建缩略图的WordPress主题。 我想要两个链接:
我发现我可以链接到这样的全尺寸图像:
<a href="<?php echo $thumbnail["fullpath"]; ?>">Link to full size image</a>
但是如何链接到图像的缩略图?
答案 0 :(得分:0)
<a href="<?php echo str_replace('.jpg','_300x300.jpg',$thumbnail['fullpath']); ?>">Link to thumb</a>