Lightbox Gallery plugin

WordPress 2.5の新機能 ギャラリー[gallery]を使って画像一覧表示するという記事でWordPress 2.5からの新機能である[gallery]の使い方を説明したが、このgalleryを使ってフォトログや写真アルバムサイトを構築するにはいまいち役不足だったので、[gallery]を拡張してプラグイン化してみた。その名も、Lightbox Galleryというプラグインである。

Lightbox Gallery プラグインタイトル
Lightbox Gallery [ English here ]

必須条件
WordPress 2.5以上

特徴
Lightbox Galleryは、[gallery]の機能を拡張し、Lightboxで画像・写真を表示できるように変更するプラグインである。Lightbox Galleryの主な特徴は以下のとおり。

  • Lightboxで画像・写真を表示
  • Tooltip(ツールチップ)で画像のキャプションを表示
  • 写真の一覧表示はローディングっぽく遅延表示
  • 写真の付随情報(機種・絞り値など)を表示

ヒストリー

  • 2008.05.08 Lightbox Gallery 0.2.1 公開
    • [gallery]のclass属性の追加。
  • 2008.05.08 Lightbox Gallery 0.2 公開
    • ショートコードの[gallery]を使わずにlightboxで画像を表示する(rel="lightbox")のサポート
  • 2008.04.22 Lightbox Gallery 0.1 公開

ダウンロード
Lightbox Galleryプラグインのダウンロードは下記のリンクをクリックしてください。

または

インストール

  1. Lightbox Galleryプラグインをインストールするには、上記の圧縮ファイルを解凍し、lightbox-gallery.jsの2行目のパスをご利用の環境に合わせて設定する。
  2. lightbox-galleryディレクトリをそのままwp-content/pluginsディレクトリにアップロードし、Lightbox Galleryを有効化する。

使用方法
Lightbox Galleryを使用方法は、WordPress 2.5以降に搭載されているギャラリーと基本的には同じである。写真を複数登録し、[gallery]タグを投稿欄に挿入するだけである。写真のキャプションは、マウスが画像の上にくるとtooltip(ツールチップ)として表示され、写真の説明はLightboxが表示される際に表示される。

上級設定
[gallery]のショートコードのオプションは全て使用できる。詳しいオプションについては、WordPress 2.5の新機能 ギャラリー[gallery]を使って画像一覧表示するを参照してほしい。ここでは、標準のオプションに加えて、Lightbox Galleryで付け加えたオプションを説明する。

  • lightboxsize
    lightboxsizeに指定した大きさでLightboxを表示する。デフォルトではmedium になっているが、full に指定することも可能。

    CODE:
    1. [gallery lightboxsize="full"]

  • meta
    metaは写真の付随情報を表示するかどうかを指定する。デフォルトではfalseになっており、表示されない。表示したい場合はtrueを指定する。写真の付随情報は、カメラの機種、絞り値、焦点距離、シャッタースピード、撮影日時をLightboxに表示する。

    CODE:
    1. [gallery meta="true"]

  • class
    classはgalleryのクラス属性を追加する。デフォルトではgallery1になっている。

    CODE:
    1. [gallery class="gallery2"]

[実例] Lightbox Galleryプラグインを使用した写真アルバム(フォトログ)サイト
このLightbox Galleryプラグインを使用し、テーマもカスタマイズしたサイトを作成した。記憶の記録@GENTOKIというサイトで、筆者が実際に撮った写真を掲載している写真アルバム(フォトログ)サイトである。

Lightbox Galleryプラグインの実例 記憶の記録@GENTOKI
記憶の記録@GENTOKI

もし需要があるようならテーマファイルも公開したいと思う。要望はコメント欄やお問い合わせから。その他、不具合やご質問・感想等があれば何なりとおっしゃってほしい。

Lightbox Gallery
This plugin changes the view of galleries to the lightbox.

Requirement
WordPress 2.5

Features

  • Lightbox display of Gallery
  • Tooltip view of caption of images
  • Displays the associated metadata with images

Download

OR

Install

  1. Edit the `lightbox-gallery.js` and check the path of line 2 according to your settings.
  2. Copy the `lightbox-gallery` directory into your `wp-content/plugins` directory
  3. Activate the plugin through the 'Plugins' menu in WordPress
  4. That's it! :)

History

  • 2008.05.08 Lightbox Gallery 0.2.1 Release
    • Adds a class attribute into [gallery].
  • 2008.05.08 Lightbox Gallery 0.2 Release
    • Supports rel="lightbox" to make regular images appear in a lightbox.
  • 2008.04.22 Lightbox Gallery 0.1 Release

How to use
How to use this plugin is basically the same as the way to add [gallery] which has been adopted by over WordPress 2.5. Lightbox Gallery plugin automatically converted the default view of gallery into the lightbox view. Photo captions are displayed as tooltips. Photo descriptions are displayed when the lightbox pops up.

Frequently Asked Questions
How can I make regular images appear in a lightbox without [gallery] shortcode?
Just add rel="lightbox" into "a" tag. Here is a sample.

<a href="image.jpg" rel="lightbox" title="this is a caption">
<img src="thumbnail.jpg" alt="" />
</a>

How can I handle multiple galleries in one page as saparate ones?
You need to do two steps. If you would like to handle galleries separately, add different class names into [gallery] and add codes as many as class names into `lightbox-gallery.js`.

  1. Edit `lightbox-gallery.js` and add some codes. Look at the comment of the file.
  2. Add a class attribute into [gallery]. ex) [gallery class="gallery2"]

Advanced settings
There are three additional options to extend the shorttag [gallery].

  • lightboxsize
    The image size when the lightbox pops up. The default is medium, but you can change to full.

    CODE:
    1. [gallery lightboxsize="full"]

  • meta
    Defines whether the exif information is displayed. The default is false. If you want to show the photo info, set true. The exif shown on the lightbox includes camera body, aperture, focal length, shutter speed, and created timestamp.

    CODE:
    1. [gallery meta="true"]

  • class
    Adds a class of the gallery. The default is 'gallery1'.

    CODE:
    1. [gallery class="gallery2"]

Demo
See Record of memory @ GENTOKI.
It's my photo album site.

Thanks.

このエントリをはてなブックマークに追加このエントリをdel.icio.usに追加このエントリをLivedoor Clipに追加このエントリをYahoo!ブックマークに追加このエントリをFC2ブックマークに追加このエントリをNifty Clipに追加このエントリをPOOKMARK. Airlinesに追加このエントリをBuzzurl(バザール)に追加このエントリをChoixに追加このエントリをnewsingに追加

« 翻訳ファイルを用意してプラグインを日本語化する
フォトログ、写真アルバムのWordPressテーマ Gentoki »

関連記事

Trackback URL

Trackbacks (5)

WordPress2.5 対応 Lightbox Galleryプラグイン…

WordPress 2.5からの新機能、gallery をかっこ良く見せる為のプラグイン Lightbox Gallery が出ました!
ショートコードのオプションの meta=”true” を追記することで、
カメラの機種、絞り値、焦点…

[…] Wordpress2.5の機能であるGalleryと、 そのGalleryにLightboxの機能を追加したLightbox-Gallery Pluginを使ってつくってみました。 […]

[…] Lightbox Gallery plugin (tags: wordpress) […]

[…] というコードを投稿欄に入力するだけで 簡単に画像一覧ページを作成することができるが、 個別画像の閲覧が不便なのでLightbox Gallery pluginを使用させていただいた。 […]

[…] Lightbox Gallery PluginとPIXIEを併用してみた。 […]

Comments (55)

I’m not sure if I got that right: Should it make regular images appear in a lightbox instead of as a plain image in the same tab? if so, that’s exactly what I am looking for. But after installation, nothing happens with the images so far… :-(

Hi Birgit,
You have a good question. I did not come up with such a need, because I am using only [gallery] which is one of WP 2.5 new features for my photo album site.

Anyway this is a tip for what you want to do. Just enclose ‘a’ and ‘img’ tags by ‘gallery’ class. Here is a sample.

<div class=”gallery”>
<a href=”image.jpg” title=”this is a caption”>
<img src=”thumbnail.jpg” alt=”thumbnail” />
</a>
</div>

I hope it will work for you.

Hello,
I tried using this plug-in, but it doesn’t work for me. Whenever you click on one of the images in the gallery, it just opens the image on a blank page, it doesn’t use the Lightbox Javascript at all. How can I fix this? You can view the problem at http://jake-moore.com/gallery/

Hi Jake,
I could not find any problem because you did not seem to activate the lightbox gallery plugin. Let me know again after you activate it. I may find out some clues to fix it.
Thanks.

Sorry about that. It is activated now.

Hello I have installed the plugin Lightbox Gallery in my site but I do not know that I must follow route to see the installed gallery. I hope that you may help me to utilize it efficaciously

bye

Hi Jake,
I looked at your gallery page. Firefox says,
jQuery(”.gallery a”).lightBox is not a function
jQuery(’.gallery a’).lightBox();

I am not sure what is the exact reason, but could you try after stopping the SimpleModal Contact Form (SMCF) plugin? This plugin calls own jQuery and it may happen the conflict error.

I found a forum post which seems to be related to this. Check it out.
http://wordpress.org/support/topic/173211

Thanks.

Hi Manuel,
Could you show me your gallery page? I do not know what is the problem. I may give you some suggestion by seeing your site.
Thanks.

Hey,
I tried that fix and it didn’t have any effect. I did disable SMCF and it solved the problem, but I would rather keep the SMCF.

Hi Jake,
Did you see the link I posted above? It is worth to try adding ‘jQuery.noConflict();’ into smcf.js, which the guy on the forum says. I hope it will work for you.

Cheers!

Hi!

Great plugin!

But I have some requests for future versions. :)

- Could you also include lightbox for single images in posts? (Without the need of wrapping the image in an gallery class).
- I ran into a small feature/bug that triggers when a page has more than one gallery instances. For example: http://www.yukka.nl/cat/fotos/
Lightbox handles all different galleries as one big gallery. (As expected this also happens whit single images embedded in gallery classes)

First, let me say that this is an absolutely brilliant plugin! I was thinking of building something like this until I found your plugin, and I’m using it on my own web site now.

I have found a minor bug, however. When you have too many images on a page in Safari (any version, I’m using 3.1 Mac), you get a JavaScript error “Maximum call stack size exceeded.” A little research shows that this is because Safari has a 100 command call stack versus 1000 for FireFox, but it doesn’t look like Safari is going to change this any time soon. (The stack size has been this way since at least 2.0, and hasn’t been changed.) You can see this issue on my Portfolio page at http://www.stilldesigning.com/portfolio. Works great in FireFox and IE, but no lightbox in Safari. Sad. :(

- Dave

Hi Jeroen,
Thank you for using the lightbox gallery plugin. I released version 0.2.1 today. This supports rel=”lightbox” to make regular images appear in a lightbox. You do not need to use [gallery] shorttag and enclose ‘a’ and ‘img’ tags by ‘gallery’ class. Just add rel=”lightbox” into “a” tag which you want to show in a lightbox.

If you would like to handle galleries separately, add different class names into [gallery] and add codes as many as class names into `lightbox-gallery.js`. Something like this:

#post
[gallery class=”gallery2″]
[gallery class=”gallery3″]

#lightbox-gallery.js
jQuery(’.gallery2 a’).lightBox({captionPosition:’gallery’});
jQuery(’.gallery2 a’).Tooltip({track:true, delay:0, showURL: false});
jQuery(’.gallery3 a’).lightBox({captionPosition:’gallery’});
jQuery(’.gallery3 a’).Tooltip({track:true, delay:0, showURL: false});

I know this is not a smart solution, but it should work.

Thanks.

Hi Dave,
I confirmed an error happens in using safari, as you says, when many images exist. I am not sure how I can fix it, but here is one option for you. There is an option that images load slowly in the lightbox gallery plugin. See lightbox-gallery.css and make a line which is the comment enable, then images start loading slowly. If you use this, Safari does not show an error. I am using this in my demo site. Check it out.

Cheers!

I noticed the new release. Great, Thanks! :)

Hi !!
I installed and activated the plugin but when I have galleries (i.e. the [gallery] command)in the post, I am not able to see anything, insetad if I use the otpion you indicated for a single image, it works!! What’s happnening?? Once I deactive your plugin the galleries are visible again…

Hi Fonzj,
I am not sure why the plugin does not work in your website. Do you have any errors in the gallery page when you activate the plugin? Did you check the source of the gallery page? Nothing outputed? Also check the other plugins and try turning off one by one in order.
Cheers.

Luv the plugin, but cant figure out how to change the thumbnail size. Currently its creating thumbnails at 150×150 and I would like to make it much smaller. Please help! :) Thank you!

Hi Raylay,
The thumbnail size is defined in the Miscellaneous Settings of admin menu. You can change both the thumbnail size and medium size of images.
Cheers.

Thanks for the quick response! I was afraid you may say that about the Misc. Settings because I have changed them and it still isnt working - have you heard of any bugs with this? Or do you know where in the Wordpress PHP files I may be overriding the thumbnail settings unknowingly? Thanks again and suggestions are soooo appreciated! :)

Another thought - can you give me code that will override the Misc Settings thumbnail size that I can add to the lightbox-gallery.php file? Thanks again! :)

After all the questions I found a solution by adjusting the CSS, thanks anyway! Great plugin! :)

I think thumbnails which were created once does not resize automatically even if you change the thumbnail size at the Miscellaneous Settings. Anyway I am glad to hear you found a solution.

Me again! I do have a few more problems:
1. My tooltips are appearing to the far right of my thumbnails, several hundred picels off (using IE6)
2. The rel=”lightbox” isnt working for seperate images
3. Once I updated to your newest release, the captions now do not show in the expanded lightbox image.

Here’s a link to the post http://alysonstoner.com/?p=77&preview=true

Thanks for any help you can provide! :)

I can not see the link you showed because it’s not published. Let me know again after making it publish. I have no idea what happened until seeing the page. Thanks.

Hello

Great job you did. Is it possible to add the tite of the pictures ? I use the [gallery lightboxsize=”full”] settings but title doesn’t appear in the box ?

Hi Jean-Marc,
The captions of images are treated as the titles and tooltips. It does not matter whether you set the lightboxsize. You need to fill out the captions in each image. Let me know the page you publish and I may suggest something else. Cheers.

I am having issues getting the plug-in to work on my site. If you go here:

http://www.commitsnowandskate.ca/wp/2008/06/wakeboards-are-in/

I can’t seem to figure out why? It would be perfect if it could work. If you could take a look and let me know your thoughts. Thanks!

James

Hi James,
Could you change the 2nd line of lightbox-gallery.js to the following:

var lightbox_path = “http://’+location.hostname+’/wp/wp-content/plugins/lightbox-gallery/”;

Be careful of quotation marks. Wordpress automatically changes them to Japanese marks. I just add /wp into the code.

It may work properly. If not, let me know again.

didn’t seem to work… it now shows:

var lightbox_path = ‘http://’+location.hostname+’/wp/wp-content/plugins/lightbox-gallery/’;

no luck.

Great plugin! It works well for mine and there’s another plugin called “auto lightbox” that’ll add the rel tag to the image link for non-gallery images. However, I am running into issues with my EXIF data not being shown even though it is in the file. I checked to see if WordPress deleted the EXIF when it resized my image but resized images maintain EXIF. I changed the value to “true” get nothing. This is true of both individual images and galleries. Do you have any suggestions? I’m running WP 2.5.1.

PS — I am also using the setting as “full”. But do not get any luck with the default setting of medium.

Hi James,
I checked your page again, and I realized js/jquery.lightbox.js seemed not to be loaded. I am not sure why the file is not loaded properly, but other plugins may conflict. Could you stop other plugins like Lightbox 2 and NextGEN Gallery?

Hi Mathew,
The EXIF data are shown only in [gallery meta=”true”]. Individual images which have rel=”lightbox” are not shown with the EXIF. Can you see the EXIF data in [gallery meta=”true”]? It does not matter which size you use.

Thanks for the response. I have both the [gallery meta=”true”] tag on and have tried it with just the gallery tag only but editing the plugin to have meta=> ‘true’. Neither one renders results for either individual photos or gallery photos.

The page I’m testing all this on is www.mathewkiang.com/photos

Ahh… I found a way to make it work. Unfortunately, I need the exif for individual photos as well. Thank you though. Its a great plugin.

Hi Mathew,
I am glad you found a way to make it work. In the next version, I will consider the way to add the exif data into individual images. Thank you.

とてもすばらしい興味深いプラグインの公開ありがとうございます。
ぜひ採用したいのですが、当方の環境では動作しないことが判明しました。
どうもphpのバージョンが4であれば動作するのですが、php5の環境だと画像を表示してくれないようです。
スクリプトは素人ですのでその原因はわかりません。
もし可能でしたらphp5へのご対応をよろしくお願いいたします。

Syunroさん、どうもこんにちは。

PHP4だと動いて、PHP5だと画像が表示されない、とのことですが、私の環境はPHP5なのでバージョンの問題ではないような気がします。

いくつか確認していただきたいのですが、プラグインを有効化しないで[gallery]を表示させた場合、きちんと画像は表示されますでしょうか。また、PHPのエラーが何か出ておりませんでしょうか。もしかしたらJavaScriptのエラーが発生している可能性もあります。

どういう状況なのか分からないので何とも申し上げられませんが、とりあえず上記の点を確認してみてください。

早速のお返事ありがとうございます。

あ、php5の環境で動作しているのですか。。。
なんとも悔しいです。

■プラグインを有効化しないで[gallery]を表示させた場合
この場合は正常に表示します。

■PHP もしくは JavaScript のエラー
FireFox と safari の双方でエラーコンソールを確認いたしましたが、どちらもエラーは出ておりませんでした。

■html ソース
テストサイトを http://garo.syunro.net/ に作っていますが、どうも内容がまったく出力されていないようです。
これが、php4 だと正常動作するのです。

■php のバージョン
バージョンは5.2.5です。
その他の仕様は http://www.que.ne.jp/tech/php.html に詳細がございます。
このレンタルサーバは、.htaccess を書き換えることでphpのバージョンを変更できるので、試しに php4 で動かしたところ正常動作してしまい、php のバージョンを疑ったのですが、間違いのようで大変失礼いたしました。

しかし、php5 で運用されているとのお返事をいただき、もう少し原因を追究する気になってまいりました。
少しずつスクリプトの勉強がてら調べてみます。
お忙しいところありがとうございました。
何かお気づきの点がございましたら」、またお返事ください。

Hi there, I’ve finally published that post I had the questions on at:
http://alysonstoner.com/?p=77
The issues again:
1. My tooltips are appearing to the far right of my thumbnails, several hundred picels off (using IE6)
2. The rel=”lightbox” isnt working for seperate images
3. Once I updated to your newest release, the captions now do not show in the expanded lightbox image.

Hi Raylay,
I realized you have not updated lightbox-gallery.js to the newest version. Please update whole files again. I think your question No.2 and 3 will be fixed. I am not sure why the tooltips are appearing the far right. Anyway, first of all, just update again. Let’s think of the tooltip after that.

早速のお返事ありがとうございます。

あら、先週追加コメントを入れたつもりが、なぜか投稿されてなかったようです。
確認を怠り、申し訳ございません。

たちまち前回のコメントへのお返事ですが

1.[gallery]は正常動作しています
2.エラー表示は出ていません

で、その後 garo.syunro.net での試験結果、次のようなことが判明いたしました。

3.ユーザディレクトリの php.ini を削除すると「少し動作」する

この「少し動作する」の意味は、single での画像一覧は表示されるのですが、index の画像のリンクがうまくいってない状況のようです。
php.ini は主なページで使っているので削除できないため、現在は動作しないままになっていますが、何かロードしなければならない関数や extension があるのでしょうか。
もしくは環境変数が違っているのかも・・・と、現在も継続検証中です。
もう少し頑張ってみます。

また、何かお気づきになったらご教示くだされば嬉しいです。

Syunroさん、こんにちは。

追加のコメントをいただいていたみたいですが、AkismetがSpam判定していたようで全然気がつきませんでした。

さて、プラグインを使用していない状態で、[gallery]が動作するのであれば、プラグインに何らかの問題があると考えるのが妥当ですね。

一つの可能性としては、他のプラグインとの干渉がありますが、一度全部のプラグインを無効にしてやってみてもらえませんでしょうか。

JavaScriptやcssは正常に読み込んでいるようですが、どこかに何らかの原因があるのでしょうね。

なかなか解決策がご提示できなくて申し訳ないのですが、どうしても難しい場合はお問い合わせより再度ご相談ください。

それではよろしくお願いいたします。

すばらしいプラグインをありがとうございます。さっそく使用させていただきました。

御礼までに。

Kumanomi様
どうもありがとうございます。
何かご使用になられてご意見、ご感想がございましたらおしゃってください。
よろしくお願いします。

すばらしいプラグインをありがとうございます。
また、GENTOKIのテーマも配布していただき本当に感謝しております。
さて、実は私も当初、lightbox galleryが動作せずに途方にくれておりました。いろいろと試してみましたがなぜか自作のテーマ(既存のテーマではOK)では動作しませんでした。(他のlightboxプラグインもだめ)
あきらめかけていた時に、lightboxプラグインが動作しない原因はheader.php内に記述するテンプレートタグ<?php wp_head(); ?>の存在であることを知りました。
多くのテーマの場合、ヘッダーにこの1行は必ずありますが、自作テーマやテーマによって動作しない場合、この1行がもれている場合があるようです。
すべてがうまくいくか私にはわかりませんが、当方の場合、この1行で解決できましたので、正常に動作しない方は一度試されてはいかがでしょうか?
長々と書きましたが、本当にすばらしいプラグインの提供を感謝しております。

Tomiさん、どうもこんにちは。

Lightbox Galleryをご使用いただきましてありがとうございます。
また、プラグインが正常に動作しない場合のチェック項目をご示唆いただきましてありがとうございます。
確かに、<?php wp_head(); ?>をつけ忘れていたためにプラグインが動かなかったという話はよく聞きます。
プラグインの動作確認の必須のチェック項目かもしれません。
プラグインが動かない場合は参考にしたいですね。

これからも新しいプラグインを公開していこうと計画しておりますので、何かご要望等ございましたらお知らせください。
今後ともどうぞよろしくお願いします。

Hello

sory to dot not answer to our request : too many job to do :-( But I take time this sunday to look at my website and it doesn’t work. I’m trying to explain : rel=”lightbox” works fine for picture but the gallery doesn’t work.
The only difference is our mutualized server uses PHP5 since 2 weeks :-(
Does lightbox gallery plugin works with php5 ?
Regards
Jean-Marc

Hi Jean,

Yes, this plugin works with php5. I am not sure why it does not work. Are there any errors of php or JavaScript? I may suggest something if you show me the gallery page after this plugin is activated.

Thanks.

初めまして。
WordPressにて、最近のエントリーの画像を表示したいと思い
いくつかプラグインを試してみたところ
こちらのLightbox Galleryがとても好みでしたので使わせて頂こうと思ったのですが
CloseやNext等の画像が表示されません。
しかし、lightbox系のプラグインではよくある事例のようでしたので
とりあえずその他の事例に倣いjquery.lightbox.jsの画像へのパスを
絶対パスにしてみましたが、残念ながらそれでも改善しませんでした。
他にはどういった可能性が御座いますでしょうか?
可能であればこちらのプラグインを使用したいのですが…
お手数ですが何か改善策が御座いましたらご教授頂けると幸いです。
よろしくお願い致します。

regalさん、どうもこんにちは。

さて、Lightbox GalleryのCloseやNextの画像が表示されないとのことですが、lightbox-gallery.jsの2行目のパスをご利用の環境に合わせて設定する必要があります。
ドメイン直下にインストールしてある場合はそのままで問題ないのですが、例えばwordpressgogo.com/blog/ のようなディレクトリ以下にwordpressをインストールしてある場合は、パスに手を加える必要があります。
上記の例ですと、パスを
var lightbox_path = ‘http://wordpressgogo.com/blog/wp-content/plugins/lightbox-gallery/’;
のようにするときちんと読み込まれるはずです。

もしできないようでしたら、regalさんのサイトURLをお知らせいただければ、何が問題か何かしらアドバイスができるかもしれません。
それではよろしくお願いします。

早速のお返事ありがとう御座います。
結論から申し上げますと、残念ながら教えて頂いた方法でも解決は致しませんでした。
しかし、実を言いますと上記の症状はxamppを用いたローカル環境で起こったものでして
試しにアップロードしてみたところ
そちらでは何も手を加えることもなく正常に動作致しました。
結局ローカルでは何故正常に動作しなかったのかわかりかねますが
ネット上(?)で正常に動作しているならば何も問題はないかもしれません。
こちらの確認不足でお手数をお掛けしまして申し訳御座いませんでした。
ありがたく使わせて頂きます。

ただ、このプラグインを有効にすると指定したエントリーとは別に
rel=”lightbox”属性を付加した画像が全てグループ化されてしまうんですね。。。
一応FFTP等で直接アップロードする等すれば回避できるようですが。。。
そこで、最後に要望というわけではありませんが上記の点と、
個人的に表示する画像の数を指定できるようになると非常に嬉しいところです。
とはいえ門外漢ではありますが、後者はともかく、
前者は実現しようと思うと色々面倒そうな気も致しますが。。。
しかし、こちらのプラグインは自分としては現段階において最も理想に近いので
これからの発展に期待させて頂きたいところであります。

とにもかくにも
素晴らしいプラグインであることに変わりはありません。
ありがたく使わせて頂きます。ありがとう御座いました。

regalさん、こんにちは

さて、ローカルでの環境でしたか。
ローカルでもきちんとURLを指定すれば動くように思うのですが、どこかでパスがおかしくなっているのでしょうか。http://localhost/・・・のような感じだと思いますが。

ご要望の件ですが、ギャラリーの識別にはLightbox Galleryの拡張でclass属性を追加していますが、同一ポスト内で、ギャラリー用の画像と単一画像をアップロードしたような場合、現状では全部一緒に扱われると思います。そういう意味で画像ごとに識別できるクラス属性みたいなものを指定できるようになればいいのですが。

WordPress 2.6を見てみましたが、画像の順番は指定できるようになっているみたいですが、グループ化できるような要素は追加されていないようです。

WordPress 2.6のリリースに合わせてプラグインは見直すと思いますので、上記の件と表示する画像の数の件など合わせて改良できるところはやってみようと思います。

その他、何かありましたら何なりとおっしゃってください。
それでは今後ともよろしくお願いします。

Comment