压缩[图库]中显示的所有图像,并作为下载链接提供

时间:2013-05-13 作者:Paul Thomson

我想让我的访问者可以选择下载整个照片库(显示在专用的[图库]页面上),作为ZIP文件显示在每个图库页面的底部。-必须包括全尺寸图像。

DavidWalsh在他的帖子中给出了一些代码here 但我在将其与Wordpress函数集成时遇到了问题。

我知道有一个NextGEN gallery下载插件,但我不能使用它,因为我使用的是原生wordpress gallery功能。

可以在此处找到类似的问题,以及完成上述内容的替代方法(手动方法):Plugin to download attached media files?

任何帮助都将不胜感激。谢谢

2 个回复
最合适的回答,由SO网友:Ralf912 整理而成

首先,你必须获得图像。介绍了如何获取图库的所有图像here.

WordPress使用两个类来解压缩文件。PHP bilt在ZipArchive() (用法见David Walsh)。和PclZip, 您可以在中找到该类wp-admin/includes/class-pclzip.php. 如果你对ZipArchive() 尝试PclZip类。

现在你只需要把两者粘在一起。也许我可以稍后发布一些示例代码,目前我不在办公桌上。

Update

你的问题可以分为两部分。第一种方法是从库中获取所有图像。第二个是压缩图像并发送zip文件
我将只解释第一部分,即获取库的所有图像,因为压缩文件有点离题。

也许还有其他的解决方案,但在这个示例中,我用一个自定义的短代码替换了原来的库短代码来获取图像。原因是,WordPress在v3中更改了库。5一点
在3.5之前,图库的图像是文章的附件。3.5之后,图像将作为属性传递给短代码。自WP3起。5我们无法再获得帖子的附加图像,我们必须从短代码属性中获取列表。我的策略是用自定义短代码替换原始短代码,获取属性并调用原始短代码以获得库输出。

所有与画廊相关的东西都在一个类中。要创建zip文件,我们可以使用另一个类,该类将gallery类的输出作为输入。让我们从一个类和一个简单的构造函数开始。

class GalleryZip
{
    private static $instance = null;

    public static $images = array();

    public static function get_instance() {
        if ( ! session_id() )
          session_start();

        if ( null === self::$instance )
            self::$instance = new self();

        return self::$instance;
    }

    private final function __construct() {
        remove_shortcode( \'gallery\' );
        add_shortcode( \'gallery\', array( __CLASS__, \'gallery_zip_shortcode\' ) );
    }
}
我们将调用该方法get_instance() 稍后在带有挂钩的插件中plugins_loaded. 在构造函数中,我们删除了原始的短代码,并将其替换为自定义的短代码gallery_zip_shortcode(). 现在我们需要短代码回调

public static function gallery_zip_shortcode( $atts ) {

    $post = get_post();

    if ( ! function_exists( \'gallery_shortcode\' ) )
      require_once ABSPATH . \'wp-includes/media.php\';

    self::get_gallery_images_from_shortcode( $post->ID, $atts );
    $output = gallery_shortcode( $atts );

    $gallery_id = count( self::$images[$post->ID] ) - 1;

    $link = sprintf( \'<div><a href="#" gallery-id="%d" post-id="%d" class="gallery-zip">%s</a></div>\', $gallery_id, $post->ID, __( \'Get as Zip\' ) );
    $output .= $link;

    return $output;

}
这种方法的第一件事是获取帖子,因为我们需要帖子IDwp-includes/media.php, 此文件包含原始库短代码的回调函数。现在我们调用一个方法来获取包含所有图像的数组,通过调用原始库回调创建库输出,创建链接并将链接附加到库输出。图像本身(分别是图像的路径)存储在类变量中$images, 我们稍后需要此阵列
类变量$image 使用图库保存每篇文章的条目,因此我们可以在frontpage或单个视图中使用该功能。每个条目包含每个库的一个数组,因为每篇文章中可以有多个库。

该插件的核心是从短代码中获取图像的方法。

protected static function get_gallery_images_from_shortcode( $id, $atts ) {

    // use the post ID if the attribute \'ids\' is not set or empty
    $id = ( ! isset( $atts[\'ids\'] ) || empty( $atts[\'ids\'] ) ) ?
        (int) $id : $atts[\'ids\'];

    $exclude = ( isset( $atts[\'exclude\'] ) && ! empty( $atts[\'exclude\'] ) ) ?
        $atts[\'exclude\'] : \'\';

    if ( ! isset( self::$images[$id] ) || ! is_array( self::$images[$id] ) )
        self::$images[$id] = array();

    $images = self::get_gallery_images( $id, $exclude );

    array_push( self::$images[$id], $images );

    return $images;

}
首先,我们决定它是单个帖子还是帖子ID列表。如果它是一个post id列表,我们将处理WP3中的一个库。5岁以上。之后,我们必须处理exclude 属性设置完所有变量后,我们终于可以从库中获取图像。检索到的图像将被推送到类var中$images 供以后使用。

protected static function get_gallery_images( $id, $exclude ) {
    $images     = array();
    $query_args = array(
            \'post_status\'    => \'inherit\',
            \'post_type\'      => \'attachment\',
            \'post_mime_type\' => \'image\',
    );

    // handle gallery WP3.5+
    // if $id contains an comma, it is a list of post IDs
    if ( false !== strpos( $id, \',\' ) ) {
        $query_args[\'include\'] = $id;
    } elseif ( ! empty( $exclude ) ) {
        // handle excluding posts
        $query_args[\'post_parent\'] = $id;
        $query_args[\'exclude\']     = $exclude;
    } else {
        // handle gallery before WP3.5
        $query_args[\'post_parent\'] = $id;
    }

    $attachments = get_posts( $query_args );

    $img_sizes = array_merge( array( \'full\' ), get_intermediate_image_sizes() );

    $img_size = ( in_array( self::IMAGE_SIZE, $img_sizes ) ) ?
            self::IMAGE_SIZE : \'full\';

    foreach ( $attachments as $key => $post ) {
        $img = wp_get_attachment_image_src( $post->ID, $img_size, false, false );
        $images[] = sprintf( \'%s/%s\', dirname( get_attached_file( $post->ID ) ), basename( $img[0] ) );
    }

    return $images;
}
这是插件的黄金。只需使用查询参数设置数组,即可使用get_posts() 并浏览检索到的附件。为了处理不同的大小,我们得到了附件图像和url的条带。从所附文件中,我们获取路径并将其与文件名放在一起。在阵列中$images 现在是库中的所有图像及其路径。

基本上你的问题在这一点上得到了回答。但是您还需要从这些图像创建一个zip文件。您可以从阵列创建zip文件$images 在最后一种方法中。但是每次显示库时都会调用此方法,创建zip文件可能需要一段时间。也许没有人会请求您在这里创建的zip文件,这是对资源的浪费。

我们怎样才能做得更好?还记得我把所有图像都放在class变量中吗$images? 我们可以将这个类var用于ajax请求。但是ajax请求只是另一个页面加载,我们只能在创建库的输出时访问图像。我们必须将图像保存在一个地方,这样即使在再次请求页面后,我们也可以访问它们
在本例中,我使用会话变量存储包含图像的数组。即使在重新加载另一个页面后,也可以访问会话变量。为了存储图像,我注册了一个方法shutdown钩WordPress完成页面渲染后shutdown 将调用挂钩。此时,我们应该已经收集了所有展示画廊中的所有图像。我们只需存储图像,就可以在ajax请求中访问它们。

当ajax请求被触发时,我们调用会话var并从数据中创建一个zip文件。但这个问题有点离题。

我创建了一个repository on GitHub 具有完整的插件代码。我希望它为你指明了正确的方向。

SO网友:Sam Edgecombe

我喜欢Ralf的插件能够一次下载整个图库的想法,但我还没能让它正常工作。我想出了一个适合我们的解决方案。方法是将本地WP库替换为您自己的WP库,并将其放置在主题的末尾functions.php 文件并添加以下文件,名为download.php 进入活动主题文件夹。在自定义库中,文件下的链接将调用文件下载。php自动将文件下载到硬盘。我已经在最新的Chrome、Firefox和Safari版本上进行了测试,效果很好。一直在使用“二十一二”主题,但没有理由不适用于其他主题。

a) 将以下内容添加到functions.php. 这只是从媒体上摘取的。php

remove_shortcode(\'gallery\');
function gallery_with_download_links($attr) {
    $post = get_post();
    static $instance = 0;
    $instance++;
    if ( ! empty( $attr[\'ids\'] ) ) {
        // \'ids\' is explicitly ordered, unless you specify otherwise.
        if ( empty( $attr[\'orderby\'] ) )
            $attr[\'orderby\'] = \'post__in\';
        $attr[\'include\'] = $attr[\'ids\'];
    }
    // Allow plugins/themes to override the default gallery template.
    $output = apply_filters(\'post_gallery\', \'\', $attr);
    if ( $output != \'\' )
        return $output;
    // We\'re trusting author input, so let\'s at least make sure it looks like a valid orderby statement
    if ( isset( $attr[\'orderby\'] ) ) {
        $attr[\'orderby\'] = sanitize_sql_orderby( $attr[\'orderby\'] );
        if ( !$attr[\'orderby\'] )
            unset( $attr[\'orderby\'] );
    }

    extract(shortcode_atts(array(
        \'order\'      => \'ASC\',
        \'orderby\'    => \'menu_order ID\',
        \'id\'         => $post->ID,
        \'itemtag\'    => \'dl\',
        \'icontag\'    => \'dt\',
        \'captiontag\' => \'dd\',
        \'columns\'    => 3,
        \'size\'       => \'thumbnail\',
        \'include\'    => \'\',
        \'exclude\'    => \'\'
    ), $attr));

    $id = intval($id);
    if ( \'RAND\' == $order )
        $orderby = \'none\';

    if ( !empty($include) ) {
        $_attachments = get_posts( array(\'include\' => $include, \'post_status\' => \'inherit\', \'post_type\' => \'attachment\', \'post_mime_type\' => \'image\', \'order\' => $order, \'orderby\' => $orderby) );

        $attachments = array();
        foreach ( $_attachments as $key => $val ) {
            $attachments[$val->ID] = $_attachments[$key];
        }
    } elseif ( !empty($exclude) ) {
        $attachments = get_children( array(\'post_parent\' => $id, \'exclude\' => $exclude, \'post_status\' => \'inherit\', \'post_type\' => \'attachment\', \'post_mime_type\' => \'image\', \'order\' => $order, \'orderby\' => $orderby) );
    } else {
        $attachments = get_children( array(\'post_parent\' => $id, \'post_status\' => \'inherit\', \'post_type\' => \'attachment\', \'post_mime_type\' => \'image\', \'order\' => $order, \'orderby\' => $orderby) );
    }

    if ( empty($attachments) )
        return \'\';

    if ( is_feed() ) {
        $output = "\\n";
        foreach ( $attachments as $att_id => $attachment )
            $output .= wp_get_attachment_link($att_id, $size, true) . "\\n";
        return $output;
    }

    $itemtag = tag_escape($itemtag);
    $captiontag = tag_escape($captiontag);
    $icontag = tag_escape($icontag);
    $valid_tags = wp_kses_allowed_html( \'post\' );
    if ( ! isset( $valid_tags[ $itemtag ] ) )
        $itemtag = \'dl\';
    if ( ! isset( $valid_tags[ $captiontag ] ) )
        $captiontag = \'dd\';
    if ( ! isset( $valid_tags[ $icontag ] ) )
        $icontag = \'dt\';

    $columns = intval($columns);
    $itemwidth = $columns > 0 ? floor(100/$columns) : 100;
    $float = is_rtl() ? \'right\' : \'left\';

    $selector = "gallery-{$instance}";

    $gallery_style = $gallery_div = \'\';
    if ( apply_filters( \'use_default_gallery_style\', true ) )
        $gallery_style = "
        <style type=\'text/css\'>
            #{$selector} {
                margin: auto;
            }
            #{$selector} .gallery-item {
                float: {$float};
                margin-top: 10px;
                text-align: center;
                width: {$itemwidth}%;
            }
            #{$selector} img {
                border: 2px solid #cfcfcf;
            }
            #{$selector} .gallery-caption {
                margin-left: 0;
            }
        </style>
        <!-- see gallery_shortcode() in wp-includes/media.php -->";
    $size_class = sanitize_html_class( $size );
    $gallery_div = "<div id=\'$selector\' class=\'gallery galleryid-{$id} gallery-columns-{$columns} gallery-size-{$size_class}\'>";
    $output = apply_filters( \'gallery_style\', $gallery_style . "\\n\\t\\t" . $gallery_div );

    $i = 0;
    foreach ( $attachments as $id => $attachment ) {
        $link = isset($attr[\'link\']) && \'file\' == $attr[\'link\'] ? wp_get_attachment_link($id, $size, false, false) : wp_get_attachment_link($id, $size, true, false);

        $output .= "<{$itemtag} class=\'gallery-item\'>";
        $output .= "
            <{$icontag} class=\'gallery-icon\'>
                $link
            </{$icontag}>";
        if ( $captiontag && trim($attachment->post_excerpt) ) {
            $output .= "
                <{$captiontag} class=\'wp-caption-text gallery-caption\'>
                " . wptexturize($attachment->post_excerpt) . "
                </{$captiontag}>";
        }
// This is my addon which outputs a link to download the file through download.php . NB your file uri will be public! 
        $output .= \'<br/ ><a href="\'.get_template_directory_uri().\'/download.php?file=\'.get_attached_file( $id ).\'">Download image</a>\';
        $output .= "</{$itemtag}>";
        if ( $columns > 0 && ++$i % $columns == 0 )
            $output .= \'<br style="clear: both" />\';
    }

    $output .= "
            <br style=\'clear: both;\' />
        </div>\\n";

    return $output;
}
add_shortcode( \'gallery\' , \'gallery_with_download_links\' );
b)将以下内容复制并粘贴到名为download.php 在主题的基本目录中。

<?php
$file = $_GET[\'file\'];
if (file_exists($file)) {
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: must-revalidate\');
header(\'Pragma: public\');
header(\'Content-Length: \' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>
c)。别忘了链接到库中的文件!!重要的

结束

相关推荐

Display posts from a category

我试图在分类页面上显示一组来自单个分类的帖子,使用多个循环。<div id=\"featured-content\" class=\"clearfix\"> <? // assign the variable as current category $categoryvariable = $cat; echo($cat); ?> <?php query_posts(\'$cat\'); ?>&