1

我正在我的 WordPress 网站上制作壁纸页面。我希望当他单击图像时将图像下载到用户的硬盘上。这是我到目前为止所拥有的:

<a href="download.php?file=/path/to/image">
    <img src="/path/to/image" />
</a>

我的download.php脚本如下(来源:href图片链接点击下载):

$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

4

1 回答 1

0

您可以使用以下代码

<a href="<?php echo home_url() ?>download-image.php?file=/path/to/image">
    <img src="/path/to/image" />
</a>
于 2013-06-05T14:10:43.490 回答