每篇帖子中的特色图像下载按钮-自动

时间:2016-03-20 作者:Mary

我想在WordPress中使用php文件自动为每篇帖子中的特色图片添加下载按钮。我不想在每篇文章或插件中使用短代码、自定义html,因为我需要自动化、简单和可靠的解决方案。

这是我的代码,在单帖内容页中显示特色图片。

<div <?php post_class( \'inside item\' ); ?>>
    <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( \'post-page\', array( \'class\' => \'featured-image\' ) ); ?></a>
下面我想添加一个按钮来下载此特定图像:

<a class="download_image" href="<?php featured-image-link?; ?>"
>Download this Image</a>
但我不知道如何提供一个全尺寸照片的自动链接(见上图)。

感谢您的建议和评论!

1 个回复
最合适的回答,由SO网友:Sören Wrede 整理而成

您可以使用the_post_thumbnail_url(); 获取缩略图URL。有关该功能的更多信息:https://developer.wordpress.org/reference/functions/get_the_post_thumbnail_url/

<a class="download_image" href="<?php the_post_thumbnail_url( \'full\' ); ?>">Download this Image</a>

相关推荐

Images with overlay

我有一些图片在一个容器中,我想添加一个覆盖和图标。这不是现成的,但我找到了一些有用的代码:HTML:<div class=\"main\"> <span class=\"featured\"><img src=\"http://joshrodg.com/IMG_001-258x258.jpg\" title=\"\" alt=\"\"></span> </div> CSS:.featured {