Download button for Featured Image in every post - automatically

I want to add download button for featured image in every post automatically in WordPress with the usage of php files. I

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>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745269525a4619659.html

相关推荐

  • Download button for Featured Image in every post - automatically

    I want to add download button for featured image in every post automatically in WordPress with the usage of php files. I

    5小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信