最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Download button for Featured Image in every post - automatically

programmeradmin0浏览0评论

I want to add download button for featured image in every post automatically in WordPress with the usage of php files. I don't want to use shortcodes, custom html in every post or plugins, cause I need automated, simple and reliable solution.

This is my code showing featured image in the single post content page.

<div <?php post_class( 'inside item' ); ?>>
    <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'post-page', array( 'class' => 'featured-image' ) ); ?></a>

Underneath I would like to add a button to download this particular image:

<a class="download_image" href="<?php featured-image-link?; ?>"
>Download this Image</a>

But I don't know how to provide an automatic link to the photo in its full size (which can be seen above).

Thanks for all your suggestions and comments!

I want to add download button for featured image in every post automatically in WordPress with the usage of php files. I don't want to use shortcodes, custom html in every post or plugins, cause I need automated, simple and reliable solution.

This is my code showing featured image in the single post content page.

<div <?php post_class( 'inside item' ); ?>>
    <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'post-page', array( 'class' => 'featured-image' ) ); ?></a>

Underneath I would like to add a button to download this particular image:

<a class="download_image" href="<?php featured-image-link?; ?>"
>Download this Image</a>

But I don't know how to provide an automatic link to the photo in its full size (which can be seen above).

Thanks for all your suggestions and comments!

Share Improve this question edited Mar 20, 2016 at 15:18 fuxia 107k39 gold badges255 silver badges459 bronze badges asked Mar 20, 2016 at 15:08 MaryMary 451 gold badge2 silver badges5 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You can use the_post_thumbnail_url(); to get the thumbnail URL. More infos about the function: https://developer.wordpress/reference/functions/get_the_post_thumbnail_url/

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

评论列表(0)

  1. 暂无评论