我只想用Alt, description, title, size, resotution
如何添加下载按钮?
例如,我想在wordpress上创建图像下载网站LINK
<?php $args = array(
\'post_parent\' => $post->ID,
\'post_type\' => \'attachment\',
\'numberposts\' => -1, // show all
\'post_status\' => \'any\',
\'post_mime_type\' => \'image\',
\'orderby\' => \'menu_order\',
\'order\' => \'ASC\'
);
$images = get_posts($args);
if($images) { ?>
<?php foreach($images as $image) { ?>
<img src="<?php echo wp_get_attachment_url($image->ID); ?>" >