我制作了Wordpress网站,其中只包含图片,并且我在每个图像中都实现了下载按钮,这些按钮在桌面网站上运行得非常好,但在手机上它不起作用,这是我的代码:
<a href="<?php
$files = get_children("post_parent=$id&post_type=attachment&post_mime_type=image");
if($files){
$keys = array_keys($files);
$num=$keys[0];
$thumb=wp_get_attachment_url($num);
print "$thumb";
}
?>?" download="<?php the_title(); ?>">Download Image</a>
请问我是否还有其他可在智能手机上运行的代码?感谢