Title: Display CPG Thumbnails
Author: macmiller
Published: <strong>2011年10月29日</strong>
Last modified: 2011年10月31日

---

プラグインを検索

このプラグインは **WordPress の最新3回のメジャーリリースに対してテストされていま
せん**。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress
で使用した場合は互換性の問題が発生する可能性があります。

![](https://s.w.org/plugins/geopattern-icon/display-cpg-thumbnails.svg)

# Display CPG Thumbnails

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

[ダウンロード](https://downloads.wordpress.org/plugin/display-cpg-thumbnails.1.0481.zip)

 * [詳細](https://ja.wordpress.org/plugins/display-cpg-thumbnails/#description)
 * [レビュー](https://ja.wordpress.org/plugins/display-cpg-thumbnails/#reviews)
 *  [インストール](https://ja.wordpress.org/plugins/display-cpg-thumbnails/#installation)
 * [開発](https://ja.wordpress.org/plugins/display-cpg-thumbnails/#developers)

 [サポート](https://wordpress.org/support/plugin/display-cpg-thumbnails/)

## 説明

The plugin is intended to create a number of links which you can display on your
wordpress page. Each link is represented by a thumbnail image which exists within
the associated CPG Gallery. Clicking on a link will take you to the associated picture
within the CPG application. There are a number of parameters which indicate how 
many images to display per row and how many columns, along with size information
and flexible caption (user defined information).

As one of the parameter driven data points which can be used in the caption is user
name. For this reason the plugin will work correctly if the CPG Gallery is ‘bridged’
to phpbb or not (in the case in which it is bridged, the user name is pulled from
the phpbb database).

One of the very nice features of the plug in is that you can specify the maximum
number of images for one user (or the maximum number of images for one album). If
you are displaying the latest uploaded images and one user has just uploaded a bunch
of images, this helps keep the display ‘balanced’ and present a cross section of
images on your page.

## スクリーンショット

 * [[
 * The available widget with associated text as it appears under the Appearance -
   > Widgets page.
 * [[
 * This is how the screen widgets parameters setting page appears when you click
   on the widgets page.
 * [[
 * This is the generated output for a latest update display on the Wordpress page.
 * [[
 * This is the generated output for a random image display on the Wordpress page.

## インストール

 1. Copy to your plugin folder.
 2. Activate the plugin.
 3. Go to Widgets.
 4. Drag the widget to the desired sidebar.
 5. Establish the required parameter values on the Widget Screen.
 6. Edit and set the DEFINE statemtents to correspond with your environment in the 
    script ‘DisplayCPGThumbnailsGuts.php’.

Widget Setup

 * Title: Type in the desired title.
 * CPG Config Location: This is the file location of your CPG Config file. There
   is a Document Root Path display on the bottom of the screen to help you with 
   this. This file is in your CPG Directory and is conifg.inc.php. The indicated
   location is the full file location and not the URL.
 * Random or Update: This radio box selects if the display of selected thumbnails
   is random or update.
 * Number Images: The number of images to be displayed, must be a numeric integer
   value between 1 and 100 inclusive.
 * Max Per Album: The maximum number of images that can be displayed from any one
   album. A value of -1 means the field is ignored. Values allowed are between 1
   and 5 inclusive.
 * Max Per User: The maximum number of images to be displayed from any one user.
   A value of -1 means the field is ignored. Values allowed are between 1 and 5 
   inclusive.
 * Thumb Width: The maximum width of the thumbnail displayed, in pixels. A value
   of -1 means the field is ignored. Valid values are between 50 and 100 inclusive.
 * Thumb Height: The maximum height of the displayed thumbnail in pixels. A value
   of -1 means the field is ignored. Valid values are between 50 and 100 inclusive.
 * NBR of TBL Cols: The number of columns displayed. If -1 is entered the output
   is not returned as a html table, otherwise values must be between 1 and 12 inclusive.
 * Caption Options: This controls the captioning text. Valid options are ‘USR’ (
   for user name), ‘DTE’ (for upload date), ‘TIT’ (for picture title) and ‘CAP’ (
   for picture caption). These are entered as you want text displayed below your
   thumbnails. The values are entered separated by ‘/’, eg. DTE/TIT to display only
   a date and title.
 * Caption Prefixes: The prefix displayed before the caption option. These are entered
   separated by ‘/’ and are free text.
 * Caption Lengths: Indicates the length in bytes of the associated caption option.
 * Caption Cont. Text: This is the text you want after the max length has been reached
   and that caption option has been trunctated. For example, ‘…’ would do something
   like ‘my new do…’ if the length was set to 9.
 * Document Root Path: For display only. Indicates the root file path. This will
   be helpful in setting up the CPG Config Location.
 * Parameter Validation Return Area: For display only. Indicates if there are any
   errors.

Defines in DisplayCPGTHumbnailsGuts.php

You will need to set up these variables depending on your requirements and setup.
The only item that is mandatory to set is the BRIDGEDtoPHPBB3. All of these items
are defines in the script because once set up they will not normally ever need to
be modified.

 * define(“BRIDGEDtoPHPBB3”, TRUE); -> This indicates if your CPG environment is‘
   bridged’ to a phpbb3 forum. This is important since if your CPG environment is
   bridged to a forum the user name will be in the forum database (not within CPG).
   Since the user name is displayed as a part of the caption this is important.
 * define(“sqldb_MAX_READS”, -1); -> This is the max number of reads if not -1. 
   Recommend just leaving it as -1 unless it is required for performance.
 * define(“scaleImages”, FALSE); -> This indicates if the images are to be ‘scaled’.
   If this is set to true (not recommended) both the width and height directives
   will be used on the img tag.
 * define(“sizeDownOnly”, TRUE); -> If set to true will not increase the size of
   the image. Example, actual image height is 80 px, height is indicated as 100 
   px, the displayed image will be 80.

CSS

You will need to add some CSS to your wordpress theme. This normally goes into the
style.css file in your theme folder. There may be some more CSS you need to integrate
the widget into your theme. You can see the full scope of css at [coolthaihouse](https://ja.wordpress.org/plugins/display-cpg-thumbnails/www.coolthaihouse.com/?output_format=md)
by using firebug.

    ```
    table.CPGImage{
       border: none !important;
       margin: 0px 0px 0px 3px !important;
       width: auto !important;}
    .CPGImage tr td {border-width: 0px 1px 0px 1px !important;
        border-color: #E4E2DB !important;
        border-style: dotted !important; 
        padding: 2px 2px 2px 2px !important;}
    table.CPGImage td:first-child {border-left: 0 !important;}
    table.CPGImage td:last-child {border-right: 0 !important;}


    .CPGImage tr td {margin-bottom: 3px !important;}
    .CPGImage p {
       width: 90px !important;
       margin-bottom: 0px !important;
       margin-right: 2px !important;
       padding-right: 2px !important;
       margin-left: 2px !important;
       margin-right: 2px !important;
       font-size: 9px !important;
       vertical-align: bottom !important;
       text-align: left !important;
       line-height: 1.1em !important;
       word-wrap: break-word !important;
       clear: both !important;
        }
    ```

Table

If the NBR of TBL Cols is used (not -1) the output is tabelized.

    ```
    The resultant tabel looks something like this:
            <table class="CPGImage">
                <tr>
                    <td>
                        <a href and img tags with text p>
                    </td>
                    <td>
                etc.
    ```

## FAQ

  Why are tables used?

The formatting of the output is easier in table format. There is also a non-table
output option available (set NBR of TBL Cols = -1).

  I never worked with CSS before. Can I make this plugin look nice on my blog?

In all likelyhood, no.

  I don’t know how to edit a php script. Should I attempt to use this plugin?

In all likelyhood, no.

## 評価

このプラグインにはレビューがありません。

## 貢献者と開発者

Display CPG Thumbnails はオープンソースソフトウェアです。以下の人々がこのプラグイン
に貢献しています。

貢献者

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

[“Display CPG Thumbnails” をあなたの言語に翻訳しましょう。](https://translate.wordpress.org/projects/wp-plugins/display-cpg-thumbnails)

### 開発に興味がありますか ?

[コードを閲覧](https://plugins.trac.wordpress.org/browser/display-cpg-thumbnails/)
するか、[SVN リポジトリ](https://plugins.svn.wordpress.org/display-cpg-thumbnails/)
をチェックするか、[開発ログ](https://plugins.trac.wordpress.org/log/display-cpg-thumbnails/)
を [RSS](https://plugins.trac.wordpress.org/log/display-cpg-thumbnails/?limit=100&mode=stop_on_copy&format=rss)
で購読してみてください。

## 変更履歴

#### 1.0

 * Initial release.

#### 1.01

 * Updated the readme.txt file to the correct format. Added associated images. This
   update does not require an upgrade for existing plugin users.

#### 1.02

#### 1.03

#### 1.04

#### 1.047

#### 1.048

#### 1.0481

 * This series of updates only used for SVN experimentation and slight updates to
   readme.

## メタ

 *  バージョン **1.0**
 *  最終更新日 **15年前**
 *  有効インストール数 **10+**
 *  WordPress バージョン ** 3.2.1またはそれ以降 **
 *  検証済み最新バージョン: **3.2.1**
 *  言語
 * [English (US)](https://wordpress.org/plugins/display-cpg-thumbnails/)
 * タグ
 * [Coppermine](https://ja.wordpress.org/plugins/tags/coppermine/)[Display Images](https://ja.wordpress.org/plugins/tags/display-images/)
   [gallery](https://ja.wordpress.org/plugins/tags/gallery/)[widget](https://ja.wordpress.org/plugins/tags/widget/)
 *  [詳細を表示](https://ja.wordpress.org/plugins/display-cpg-thumbnails/advanced/)

## 評価

レビューはまだ送信されていません。

[Your review](https://wordpress.org/support/plugin/display-cpg-thumbnails/reviews/#new-post)

[すべてのレビューを見る](https://wordpress.org/support/plugin/display-cpg-thumbnails/reviews/)

## 貢献者

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

## サポート

意見や質問がありますか ?

 [サポートフォーラムを表示](https://wordpress.org/support/plugin/display-cpg-thumbnails/)

## 寄付

このプラグインが今後も改善できるよう応援しませんか ?

 [ このプラグインに寄付 ](http://tbd)