i have attacment.php like this.
<?php
if ( $attachments = get_children( array(
'post_type' => 'attachment',
'post_mime_type'=>'image',
'numberposts' => 1,
'post_status' => null,
'post_parent' => $post->ID
)));
foreach ($attachments as $attachment) {
echo wp_get_attachment_link( $attachment->ID, '' , false, true, 'Download This Wallpaper');
}
?>
this code will print attachment link.
My question is: How to make this link to be single click to download image and save to computer user?