WordPress ウェブサイトで壁紙ページを作成しています。ユーザーがクリックしたときに画像がユーザーのハードドライブにダウンロードされるようにしたいと思います。これは私がこれまでに持っているものです:
<a href="download.php?file=/path/to/image">
<img src="/path/to/image" />
</a>
私のdownload.phpスクリプトは次のとおりです(ソース:href image link download on click):
$file = $_GET['file'];
if (headers_sent()) {
die('Headers Sent');
}
if (file_exists($file)) {
// Parse Info / Get Extension
$fsize = filesize($file);
$path_parts = pathinfo($file);
$ext = strtolower($path_parts["extension"]);
// Determine Content Type
switch ($ext) {
case "gif": $ctype="image/gif"; break;
case "png": $ctype="image/png"; break;
case "jpeg":
case "jpg": $ctype="image/jpg"; break;
default: die('Wrong Extension');
}
header("Pragma: public"); // required
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private", false); // required for certain browsers
header("Content-Type: $ctype");
header("Content-Disposition: attachment; filename=\"".basename($file)."\";" );
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . $fsize);
ob_clean();
flush();
readfile($file);
} else {
die('File Not Found');
}
しかし、画像をクリックすると、WordPress は download.php のテンプレートがないことを認識し、ホームページにリダイレクトします。私は何を間違っていますか?
更新: 私が見る限り、これはこのように行うことはできず、WordPress での ajax 呼び出しは admin-ajax.php を経由する必要があります。