Wordpress中的下载按钮代码适用于Chrome,但在Firefox中,图片无需扩展即可下载。
<div class="download-button">
Download: <a target="_self"
href=" <?php
$src = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full', false );
echo $src[0]; // the url of featured image?> "
download="<?php echo get_the_title(); ?>"
width="<?php echo $src[1]; ?>"
height="<?php echo $src[2]; ?>"
title="<?php echo get_the_title(); ?>" >
<?php echo $src[1]; ?>x<?php echo $src[2]; ?>
</a>
</div>
如果您使用“将目标另存为”,则会有扩展程序。
为什么在下载时会使用扩展程序保存?