链接到 WordPress 中的 TimThumb 缩略图

发布于 2024-11-09 04:56:21 字数 275 浏览 0 评论 0原文

我有一个使用 TimThumb 创建缩略图的 WordPress 主题。 我想要两个链接:

  1. 指向全尺寸图像的链接
  2. 指向图像缩略图的链接

我发现我可以像这样链接到全尺寸图像:

<a href="<?php echo $thumbnail["fullpath"]; ?>">Link to full size image</a>

但是如何链接到图像的缩略图?

I have a WordPress Theme that uses TimThumb to create thumbnails.
I want to have two links:

  1. A link to the full size image
  2. A link to a thumbnail of the image

I have figured out I can link to the full size image like this:

<a href="<?php echo $thumbnail["fullpath"]; ?>">Link to full size image</a>

But how do I link to a thumbnail of the image?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罪#恶を代价 2024-11-16 04:56:21
<a href="<?php echo str_replace('.jpg','_300x300.jpg',$thumbnail['fullpath']); ?>">Link to thumb</a>
<a href="<?php echo str_replace('.jpg','_300x300.jpg',$thumbnail['fullpath']); ?>">Link to thumb</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文