web-dev-qa-db-fra.com

Comment cliquer une seule fois pour télécharger l'image en une fois

j'ai attacment.php comme ça.

<?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');  
}  
?> 

ce code imprimera le lien de pièce jointe.

Ma question est la suivante: comment faire de ce lien un simple clic pour télécharger l'image et l'enregistrer sur un ordinateur?

4
Angel

C'est possible en utilisant le plugin:

http://wordpress.org/extend/plugins/download-shortcode/

Je suis là pour vous assister car j'utilise la même fonctionnalité sur mon site web (téléchargement forcé des attachements de poste)

Bien que cela ne soit pas spécifique à WP, voici comment forcer l'utilisateur à télécharger une image:

if ( $attachments = get_posts( array(
    'post_type' => 'attachment',
    'post_mime_type'=>'image',
    'numberposts' => -1,
    'post_status' => 'any',
    'post_parent' => $post->ID,
) ) );
foreach ( $attachments as $attachment ) {
    echo '<a href="javascript:void(0);"
        onclick="document.execCommand(\'SaveAs\', true, \'' . get_permalink( $attachment->ID ) . '\');">
        Download This Wallpaper</a>';
}

Remarque : le code n'a pas été testé.

1
tfrommen

Enregistrez les éléments suivants sous le nom image.php sur votre thème:

<?php

// This forces all image attachments to be downloaded instead of displayed on the browser.
// For it to work, this file needs to be called "image.php".
// For more info, refer to the wp hierarchy diagram.

// Get the path on disk. See https://wordpress.stackexchange.com/a/20087/22510
global $wp_query;
$file = get_attached_file($wp_query->post->ID);

// Force the browser to download. Source: https://wpquestions.com/7521
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: public'); //for i.e.
header('Pragma: public');

// ob_clean(); // Looks like we don't need this
flush();
readfile($file);
exit;
0
That Brazilian Guy