Title: Combine Galleries
Author: jackfilms
Published: <strong>2015 年 4 月 16 日</strong>
Last modified: 2015 年 4 月 27 日

---

搜索插件

**该插件尚未通过WordPress的最新3个主要版本进行测试**。 当与较新版本的WordPress一起
使用时，可能不再受到维护或支持，并且可能会存在兼容性问题。

![](https://s.w.org/plugins/geopattern-icon/combine-galleries.svg)

# Combine Galleries

 作者：[jackfilms](https://profiles.wordpress.org/jackfilms/)

[下载](https://downloads.wordpress.org/plugin/combine-galleries.zip)

 * [详情](https://cn.wordpress.org/plugins/combine-galleries/#description)
 * [评价](https://cn.wordpress.org/plugins/combine-galleries/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/combine-galleries/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/combine-galleries/#developers)

 [支持](https://wordpress.org/support/plugin/combine-galleries/)

## 描述

This plugin gives you the ability to use standard WordPress galleries and taxonomies
to organize and reuse your images.

Let’s say you’re a builder and you post all your jobs on your site and include an
image gallery with each post. Now, suppose you want to display all your job images
on a single portfolio page. What’s the easiest way to do that? Use the following:

    ```
    [combine-galleries]
    ```

Suppose you build patios, decks, and enclosures. Now, suppose you want to display
all your job images, grouped by job type, on a single portfolio page. Categorize
your job posts (patio, deck, enclosure) and use the following:

    ```
    [combine-galleries category="patio"]
    [combine-galleries category="deck"]
    [combine-galleries category="enclosure"]
    ```

Finally, suppose you want to create a page optimized for a specific city (let’s 
use Raleigh). And, on that page you want to display all your Raleigh jobs grouped
by type. Tag your job posts by city and use the following:

    ```
    [combine-galleries category="patio" tag="raleigh"]
    [combine-galleries category="deck" tag="raleigh"]
    [combine-galleries category="enclosure" tag="raleigh"]
    ```

Combine-Galleries allows you to combine and display gallery images from multiple
posts based on taxonomy. The combine-galleries shortcode combines and displays image
galleries from posts that match the categories and/or tags you specify. You don’t
need to categorize or tag your images, just the posts. If you just want to display
all gallery images on a single page, you don’t need to categorize or tag anything.

Supports custom types. Compatible with the WordPress gallery shortcode and WordPress
gallery plugins and viewers. Quickly and easily create galleries for your archive
pages. See usage examples and options below…

If you find this plugin useful, please consider a small donation of $5. All proceeds
go to fund my current feature film project, Mango Dreams.

### Usage

There are several options that may be specified using this syntax:

    ```
    [combine-galleries option1="value1" option2="value2"]
    ```

You can also print a gallery directly in a template like so:

    ```
    <?php echo do_shortcode('[combine-galleries option1="value1"]'); ?><h3>Options</h3>-----------------------------------------------------
    ```

Supported options are listed below. All options are, well, optional. You are not
required to provide any options. For example, “[combine-galleries]” will work just
fine and will display all gallery images from every post and page on your site. 
Default option values are used when options are not specified.

  type Comma delimited list of post types from which to display images. Custom types
are supported.

Default = “page,post”.

  category Comma delimited list of categories used to filter posts. If more than
one category is specified, the default behavior is to _AND_ the categories together.
For example, if category=”featured,decks” then only images from posts categorized
as both “Featured” and “Decks” will be displayed. Category values are case-insensitive.
If no category is specified then no filter is applied. By default, all categories
are included. tags Comma delimited list of tags used to filter posts. If more than
one tag is specified, the default behavior is to **OR** the tags together. For example,
if tag=”raleigh,durham,chapel hill” then images from posts tagged as “Raleigh” or“
Durham” or “Chapel Hill” will be displayed. Tag values are case-insensitive. If 
no tags are specified then no filter is applied. By default, all tags are included.
taxonomy_join Specify the boolean operator used to join multiple taxonomies, i.e.
categories and tags. Combine-galleries does not support custom taxonomies… yet. 
The default boolean operator used to join multiple taxonomies is _AND_. For example,
if category=”Patios” and tag=”Denver” then, by default, only images from posts categorized
as “Patios” _AND_ tagged as “Denver” will be displayed. Bool operators include:

 * AND (Default)
 * OR

  category_join Specify the boolean operator used to join multiple categories.

 * AND (Default)
 * OR

  tag_join Specify the boolean operator used to join multiple tags.

 * AND
 * OR (Default)

  orderby Specify the order in which galleries are combined. Order of galleries 
is based on their post. The default is post_date.

 * ID – order by post ID
 * post_author – order by post author
 * post_title – order by post title
 * post_date (Default) – order by post date
 * comment_count – order by post comment count

  order

Specify the sort order of gallery posts. ASC or DESC (Default). For example, to 
sort by post ID from biggest to smallest:

[combine-galleries orderby=”ID” order=”DESC”]

  limitposts Limit the number of posts. By default there is no limit. limitpostimages
Limit the number of images displayed per post. By default there is no limit. columns

specify the number of columns. The gallery will include a break tag at the end of
each row, and calculate the column width as appropriate. The default value is 3.
If columns is set to 0, no row breaks will be included. For example, to display 
a 4 column gallery:

[combine-galleries columns=”4″]

  size Specify the image size to use for the thumbnail display. Valid values include:

 * “thumbnail” (Default)
 * “medium”
 * “large”
 * “full”
 * Any additional image size registered with [add_image_size](https://codex.wordpress.org/Function_Reference/add_image_size).

The size of the images for “thumbnail”, “medium” and “large” can be configured in
WordPress admin panel under Settings > Media. For example, to display a gallery 
of medium sized images:

    ```
    [combine-galleries size="medium"]
    ```

### Advanced Options

  itemtag the name of the XHTML tag used to enclose each item in the gallery. The
default is “dl”. icontag the name of the XHTML tag used to enclose each thumbnail
icon in the gallery. The default is “dt”. captiontag

the name of the XHTML tag used to enclose each caption. The default is “dd”. For
example, to change the gallery markup to use div, span and p tags:

[combine-galleries itemtag=”div” icontag=”span” captiontag=”p”]

  link Specify where you want the image to link. If this option is not specified
or if no value is given, the image links to the attachment’s permalink. Options:

 * “file” – Link directly to image file
 * “none” – No link

### Ignored WordPress Gallery Option

  id specify the post ID. combine-galleries ignores the id option. The design goal
of combine-galleries is to combine and display images from multiple posts based 
on taxonomy. The id option is used to display images from just one specific post.
If you need to display images from a single post then the gallery shortcode is best.

## 安装

Upload the plugin to your blog and Activate it. Now you are ready to use the combine-
galleries shortcode. To test your installation,
 create a new post, add the following
shortcode to the body of your post, and preview:

[combine-galleries limitposts=”50″ type=”page,post” orderby=”post_date” order=”desc”]

This test should display all WordPress gallery images from your 50 most recent pages/
posts.

## 评价

此插件暂无评价。

## 贡献者及开发者

「Combine Galleries」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ jackfilms ](https://profiles.wordpress.org/jackfilms/)

[帮助将「Combine Galleries」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/combine-galleries)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/combine-galleries/)，
查看[SVN仓库](https://plugins.svn.wordpress.org/combine-galleries/)，或通过[RSS](https://plugins.trac.wordpress.org/log/combine-galleries/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/combine-galleries/)。

## 更新日志

#### 1.0.2

 * Fix – Remove database table prefix from debug output string as a security precaution.

#### 1.0.1

 * Fix – Gallery does not display when only one taxonomy is given.

#### 1.0.0

 * Initial release of plugin.

## 额外信息

 *  版本 **1.0.2**
 *  最后更新：**11 年前**
 *  活跃安装数量 **10+**
 *  WordPress 版本 ** 3.5 或更高版本 **
 *  已测试的最高版本为 **4.2.39**
 *  语言
 * [English (US)](https://wordpress.org/plugins/combine-galleries/)
 * 标签
 * [gallery](https://cn.wordpress.org/plugins/tags/gallery/)[portfolio](https://cn.wordpress.org/plugins/tags/portfolio/)
   [shortcode](https://cn.wordpress.org/plugins/tags/shortcode/)
 *  [高级视图](https://cn.wordpress.org/plugins/combine-galleries/advanced/)

## 评级

 5 星（最高 5 星）。

 *  [  2 条 5 星评价     ](https://wordpress.org/support/plugin/combine-galleries/reviews/?filter=5)
 *  [  0 条 4 星评价     ](https://wordpress.org/support/plugin/combine-galleries/reviews/?filter=4)
 *  [  0 条 3 星评价     ](https://wordpress.org/support/plugin/combine-galleries/reviews/?filter=3)
 *  [  0 条 2 星评价     ](https://wordpress.org/support/plugin/combine-galleries/reviews/?filter=2)
 *  [  0 条 1 星评价     ](https://wordpress.org/support/plugin/combine-galleries/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/combine-galleries/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/combine-galleries/reviews/)

## 贡献者

 *   [ jackfilms ](https://profiles.wordpress.org/jackfilms/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/combine-galleries/)

## 捐助

您愿意支持这个插件的发展吗?

 [ 捐助此插件 ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6XT9FH6XW7EPJ)