<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>WordPressで企業ウェブサイト作成・商用ホームページ制作 WordPress Go Go へのコメント</title>
	<link>http://wordpressgogo.com</link>
	<description>WordPressを利用して、ブログではなくCMSとして企業サイト・企業ウェブサイト作成・商用ホームページ制作のテクニックを公開。WordPressの最新ニュースやプラグインの紹介、自作プラグインやテーマも開発中。</description>
	<pubDate>Mon, 08 Sep 2008 17:04:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.3</generator>

	<item>
		<title>arena より Lightbox Gallery plugin へのコメント</title>
		<link>http://wordpressgogo.com/development/lightbox-gallery.html#comment-949</link>
		<dc:creator>arena</dc:creator>
		<pubDate>Mon, 08 Sep 2008 08:07:34 +0000</pubDate>
		<guid>http://wordpressgogo.com/development/lightbox-gallery.html#comment-949</guid>
		<description>Thank you for the quick reply.</description>
		<content:encoded><![CDATA[<p>Thank you for the quick reply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Wordpress Go Go より Custom Field Template plugin へのコメント</title>
		<link>http://wordpressgogo.com/development/custom-field-template.html#comment-940</link>
		<dc:creator>Wordpress Go Go</dc:creator>
		<pubDate>Sat, 06 Sep 2008 19:42:29 +0000</pubDate>
		<guid>http://wordpressgogo.com/development/custom-field-template.html#comment-940</guid>
		<description>ニコルさん、どうもこんにちは。

さて、カスタムフィールドでの投稿の並び替えですか。やってないから何とも言えませんが、フォーラムで語られてるSQLにLIMITを加えたら表示件数をコントロールできませんかね。

きちんと探してないのであれですが、Search Custom Fieldsというプラグインとかどうでしょうか。かなり古いプラグインではあるのですが、ソースとか見てみると何か参考になりませんでしょうか。

http://guff.szub.net/2006/04/21/search-custom-fields/

Custom Field Templateはカスタムフィールドの出力には関係ないのでどうしようもありません。

それでは頑張ってみてください。</description>
		<content:encoded><![CDATA[<p>ニコルさん、どうもこんにちは。</p>
<p>さて、カスタムフィールドでの投稿の並び替えですか。やってないから何とも言えませんが、フォーラムで語られてるSQLにLIMITを加えたら表示件数をコントロールできませんかね。</p>
<p>きちんと探してないのであれですが、Search Custom Fieldsというプラグインとかどうでしょうか。かなり古いプラグインではあるのですが、ソースとか見てみると何か参考になりませんでしょうか。</p>
<p><a href="http://guff.szub.net/2006/04/21/search-custom-fields/" rel="nofollow">http://guff.szub.net/2006/04/21/search-custom-fields/</a></p>
<p>Custom Field Templateはカスタムフィールドの出力には関係ないのでどうしようもありません。</p>
<p>それでは頑張ってみてください。</p>
]]></content:encoded>
	</item>
	<item>
		<title>ニコル より Custom Field Template plugin へのコメント</title>
		<link>http://wordpressgogo.com/development/custom-field-template.html#comment-939</link>
		<dc:creator>ニコル</dc:creator>
		<pubDate>Sat, 06 Sep 2008 06:14:25 +0000</pubDate>
		<guid>http://wordpressgogo.com/development/custom-field-template.html#comment-939</guid>
		<description>お世話になっております。

Custom Field Templateとても使いやすくて助かっています。

データベースの整理にカスタムフィールドはとても便利なのですが
カスタムフィールドの名前で投稿記事の並び替えが出来なくて困っています。

例えば、カスタムフィールドで映画を管理しているとして
映画のタイトルや星の評価などで記事を並び替えみたいなことです。

&lt;code&gt;
query_posts($query_string . "&#38;posts_per_page=3&#38;orderby=カスタムフィールドの名前&#38;order=ASC")
&lt;/code&gt;

上記のような感じで並び替えが出来ると、もっとカスタムフィールドの幅が
広がると思い実験してみているのですが、なかなかうまくいきません。

MySQLデータベースの posts と usermeta が別々になっているのが問題みたいで
http://wordpress.org/support/topic/169144
Forumsではデータベースの結合をして表示させているみたいのですが
ページ機能や1ページに何件表示するかコントロールしたいので
&lt;code&gt;
if (have_posts()) :
while (have_posts()) : the_post();
&lt;/code&gt;
ループの中に入れて実現したいのですが、うまくいかず困っています。

Custom Field Templateの機能の追加ではないのですが
何かアドバイスをもらえたら幸いです。
よろしくお願いします。</description>
		<content:encoded><![CDATA[<p>お世話になっております。</p>
<p>Custom Field Templateとても使いやすくて助かっています。</p>
<p>データベースの整理にカスタムフィールドはとても便利なのですが<br />
カスタムフィールドの名前で投稿記事の並び替えが出来なくて困っています。</p>
<p>例えば、カスタムフィールドで映画を管理しているとして<br />
映画のタイトルや星の評価などで記事を並び替えみたいなことです。</p>
<p><code><br />
query_posts($query_string . "&amp;posts_per_page=3&amp;orderby=カスタムフィールドの名前&amp;order=ASC")<br />
</code></p>
<p>上記のような感じで並び替えが出来ると、もっとカスタムフィールドの幅が<br />
広がると思い実験してみているのですが、なかなかうまくいきません。</p>
<p>MySQLデータベースの posts と usermeta が別々になっているのが問題みたいで<br />
<a href="http://wordpress.org/support/topic/169144" rel="nofollow">http://wordpress.org/support/topic/169144</a><br />
Forumsではデータベースの結合をして表示させているみたいのですが<br />
ページ機能や1ページに何件表示するかコントロールしたいので<br />
<code><br />
if (have_posts()) :<br />
while (have_posts()) : the_post();<br />
</code><br />
ループの中に入れて実現したいのですが、うまくいかず困っています。</p>
<p>Custom Field Templateの機能の追加ではないのですが<br />
何かアドバイスをもらえたら幸いです。<br />
よろしくお願いします。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kel より Custom Field Template plugin へのコメント</title>
		<link>http://wordpressgogo.com/development/custom-field-template.html#comment-938</link>
		<dc:creator>Kel</dc:creator>
		<pubDate>Fri, 05 Sep 2008 19:34:08 +0000</pubDate>
		<guid>http://wordpressgogo.com/development/custom-field-template.html#comment-938</guid>
		<description>Ohh....  now that's just really nice. It works perfectly.</description>
		<content:encoded><![CDATA[<p>Ohh&#8230;.  now that&#8217;s just really nice. It works perfectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kel より Custom Field Template plugin へのコメント</title>
		<link>http://wordpressgogo.com/development/custom-field-template.html#comment-937</link>
		<dc:creator>Kel</dc:creator>
		<pubDate>Fri, 05 Sep 2008 19:22:48 +0000</pubDate>
		<guid>http://wordpressgogo.com/development/custom-field-template.html#comment-937</guid>
		<description>Awesome!!!  Thank you! I'll try it out.</description>
		<content:encoded><![CDATA[<p>Awesome!!!  Thank you! I&#8217;ll try it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Wordpress Go Go より Custom Field Template plugin へのコメント</title>
		<link>http://wordpressgogo.com/development/custom-field-template.html#comment-935</link>
		<dc:creator>Wordpress Go Go</dc:creator>
		<pubDate>Fri, 05 Sep 2008 13:16:50 +0000</pubDate>
		<guid>http://wordpressgogo.com/development/custom-field-template.html#comment-935</guid>
		<description>I released the custom field template version 0.2. You can use TinyMCE in the textarea. Just add "tinyMCE = true" to the textarea section. Enjoy!</description>
		<content:encoded><![CDATA[<p>I released the custom field template version 0.2. You can use TinyMCE in the textarea. Just add &#8220;tinyMCE = true&#8221; to the textarea section. Enjoy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Wordpress Go Go より Lightbox Gallery plugin へのコメント</title>
		<link>http://wordpressgogo.com/development/lightbox-gallery.html#comment-934</link>
		<dc:creator>Wordpress Go Go</dc:creator>
		<pubDate>Fri, 05 Sep 2008 05:30:54 +0000</pubDate>
		<guid>http://wordpressgogo.com/development/lightbox-gallery.html#comment-934</guid>
		<description>Hi arena,

I confirmed the javascript error happened when the Subscribe widget of MailPress was used. I realized MailPress directly loaded jQuery on the html code. See the line 91 of MP_User.class.php. Therefore, jQuery is duplicated. If I deleted this line, the lightbox worked propely and the error disappeared. Is it possible to change the loading way of jQuery?

I released the lightbox gallery 0.2.6 which fixed the bug of the useless loading of scripts in admin. Thanks.</description>
		<content:encoded><![CDATA[<p>Hi arena,</p>
<p>I confirmed the javascript error happened when the Subscribe widget of MailPress was used. I realized MailPress directly loaded jQuery on the html code. See the line 91 of MP_User.class.php. Therefore, jQuery is duplicated. If I deleted this line, the lightbox worked propely and the error disappeared. Is it possible to change the loading way of jQuery?</p>
<p>I released the lightbox gallery 0.2.6 which fixed the bug of the useless loading of scripts in admin. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>arena より Lightbox Gallery plugin へのコメント</title>
		<link>http://wordpressgogo.com/development/lightbox-gallery.html#comment-933</link>
		<dc:creator>arena</dc:creator>
		<pubDate>Thu, 04 Sep 2008 23:47:37 +0000</pubDate>
		<guid>http://wordpressgogo.com/development/lightbox-gallery.html#comment-933</guid>
		<description>Hi,
Could you do anything for Jessie who apparently have conflicts with our plugins :

About MailPress and Lightbox Gallery plugins conflict :

i made the test under Firefox3 with the standard Lightbox Gallery plugin.

i uploaded images, and had the [gallery] shortcode inserted in a post, published the post :

1) the post is properly displayed, the lightbox works,
However Firebug reports a js error ** jQuery("a[@rel*=lightbox]").lightBox is not a function    jQuery('a[@rel*=lightbox]').lightBox(); ** in lightbox-gallery.js inline #7.
2) the mail received has no images.

i deactivated the Lightbox Gallery plugin.

i uploaded images, and have the [gallery] shortcode inserted in a post, published the post :

1) the post is properly displayed...
2) the mail received has images.

I quickly studied the code of the Lightbox Gallery plugin.
It loads plenty of js libraries under admin which is useless (but that is not the point).
Apparently, the plugin rewrites what WordPress usually does when managing the shortcode [gallery].
I don't understand why in MailPress context, the code generated for a [gallery] is ok with standard WordPress and ko with this plugin.

I posted the content of this mail as a comment on the site of the plugin author and expecting an answer.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Could you do anything for Jessie who apparently have conflicts with our plugins :</p>
<p>About MailPress and Lightbox Gallery plugins conflict :</p>
<p>i made the test under Firefox3 with the standard Lightbox Gallery plugin.</p>
<p>i uploaded images, and had the [gallery] shortcode inserted in a post, published the post :</p>
<p>1) the post is properly displayed, the lightbox works,<br />
However Firebug reports a js error ** jQuery(&#8221;a[@rel*=lightbox]&#8221;).lightBox is not a function    jQuery(&#8217;a[@rel*=lightbox]&#8217;).lightBox(); ** in lightbox-gallery.js inline #7.<br />
2) the mail received has no images.</p>
<p>i deactivated the Lightbox Gallery plugin.</p>
<p>i uploaded images, and have the [gallery] shortcode inserted in a post, published the post :</p>
<p>1) the post is properly displayed&#8230;<br />
2) the mail received has images.</p>
<p>I quickly studied the code of the Lightbox Gallery plugin.<br />
It loads plenty of js libraries under admin which is useless (but that is not the point).<br />
Apparently, the plugin rewrites what WordPress usually does when managing the shortcode [gallery].<br />
I don&#8217;t understand why in MailPress context, the code generated for a [gallery] is ok with standard WordPress and ko with this plugin.</p>
<p>I posted the content of this mail as a comment on the site of the plugin author and expecting an answer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kel より Custom Field Template plugin へのコメント</title>
		<link>http://wordpressgogo.com/development/custom-field-template.html#comment-931</link>
		<dc:creator>Kel</dc:creator>
		<pubDate>Thu, 04 Sep 2008 19:25:29 +0000</pubDate>
		<guid>http://wordpressgogo.com/development/custom-field-template.html#comment-931</guid>
		<description>great! - thanks for the plugin. I came across this post, referring to the old Rhymed Code plugin. Might be helpful.  http://wordpress.org/support/topic/185935</description>
		<content:encoded><![CDATA[<p>great! - thanks for the plugin. I came across this post, referring to the old Rhymed Code plugin. Might be helpful.  <a href="http://wordpress.org/support/topic/185935" rel="nofollow">http://wordpress.org/support/topic/185935</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Wordpress Go Go より Custom Field Template plugin へのコメント</title>
		<link>http://wordpressgogo.com/development/custom-field-template.html#comment-930</link>
		<dc:creator>Wordpress Go Go</dc:creator>
		<pubDate>Thu, 04 Sep 2008 19:05:04 +0000</pubDate>
		<guid>http://wordpressgogo.com/development/custom-field-template.html#comment-930</guid>
		<description>Hi Kel,
Thanks, ok in English. This plugin does not support TinyMCE at present. However, I may add the TinyMCE editor in the next version. Let me have some time. Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Kel,<br />
Thanks, ok in English. This plugin does not support TinyMCE at present. However, I may add the TinyMCE editor in the next version. Let me have some time. Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
