<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WEBあくまこ &#187; WordPress MU</title>
	<atom:link href="http://wb.corekuuma.com/archives/category/wordpress-mu/feed" rel="self" type="application/rss+xml" />
	<link>http://wb.corekuuma.com</link>
	<description>WEB制作している人のメモ。</description>
	<lastBuildDate>Wed, 17 Jun 2009 07:57:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ダッシュボードへのリンクがおかしい</title>
		<link>http://wb.corekuuma.com/archives/89</link>
		<comments>http://wb.corekuuma.com/archives/89#comments</comments>
		<pubDate>Mon, 18 May 2009 07:54:00 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WPMUエラー]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[ダッシュボード]]></category>
		<category><![CDATA[管理画面]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/?p=89</guid>
		<description><![CDATA[WPMU2.6→WPMU2.7.1にアップグレードしたときに起きた現象。
WP2.7～の管理画面で、ダッシュボードへのリンクを押すと、コンテンツの内画面になってしまいました。
本来、index.phpへのリンクが、admin.php?page=index.phpになってしまっています。
mu-plugins（pluginsも？）にindex.phpがあるのが原因で、mu-plugins内のindex.phpを削除すればOKさ！
]]></description>
			<content:encoded><![CDATA[<p>WPMU2.6→WPMU2.7.1にアップグレードしたときに起きた現象。<br />
WP2.7～の管理画面で、ダッシュボードへのリンクを押すと、コンテンツの内画面になってしまいました。</p>
<p>本来、index.phpへのリンクが、admin.php?page=index.phpになってしまっています。</p>
<p>mu-plugins（pluginsも？）にindex.phpがあるのが原因で、mu-plugins内のindex.phpを削除すればOKさ！</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/89/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPMU2.7.1 カテゴリスラッグ</title>
		<link>http://wb.corekuuma.com/archives/88</link>
		<comments>http://wb.corekuuma.com/archives/88#comments</comments>
		<pubDate>Tue, 28 Apr 2009 08:50:14 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WPMUエラー]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[カテゴリースラッグ]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/?p=88</guid>
		<description><![CDATA[ひさしぶりにはまったので投稿。
WordPressMU 2.7 でカテゴリスラッグが設定できないのを、こちらを参考にしてできるようになったのですが、MU2.7.1にアップデートしたらダメになりました。
http://phpress.enjoy-life-style.com/archives/52
一応、保存されるが、一見反映されてない。
DB（データベース）には保存されているようです。
いろいろ調べると、カテゴリ名からスラッグを表示する処理のところが変だ。
スラッグがあろうとなかろうと変換してくれるようになってたので、スラッグがあるときはタイトル（カテゴリ名）から変換しないようにしてあげよう。
wp-admin/includes/mu.php
line:480


function sync_category_tag_slugs( $term, $taxonomy ) {
 if( $taxonomy == 'category' &#124;&#124; $taxonomy == 'post_tag' ) {
  if( is_object( $term ) ) {
   if($term-&#62;slug){
    $term-&#62;slug = sanitize_title( $term-&#62;slug );
   }else{
    $term-&#62;slug = sanitize_title( $term-&#62;name );
   }
  } else {
   if($term[ 'slug' ]){
    $term[ 'slug' ] = sanitize_title( $term[ 'slug' ] );
   }else{
    $term[ 'slug' ] = sanitize_title( $term[ 'name' ] );
   }
  }
 }
 return $term;
}
}

そうそう、自動アップグレードしたときは、該当ファイルをダウンロードしてから修正しないといけないです。
]]></description>
			<content:encoded><![CDATA[<p>ひさしぶりにはまったので投稿。</p>
<p>WordPressMU 2.7 でカテゴリスラッグが設定できないのを、こちらを参考にしてできるようになったのですが、MU2.7.1にアップデートしたらダメになりました。<br />
<a href="http://phpress.enjoy-life-style.com/archives/52">http://phpress.enjoy-life-style.com/archives/52</a></p>
<p>一応、保存されるが、一見反映されてない。<br />
DB（データベース）には保存されているようです。</p>
<p>いろいろ調べると、カテゴリ名からスラッグを表示する処理のところが変だ。<br />
スラッグがあろうとなかろうと変換してくれるようになってたので、スラッグがあるときはタイトル（カテゴリ名）から変換しないようにしてあげよう。</p>
<p>wp-admin/includes/mu.php<br />
line:480</p>
<pre name="code" class="php">

function sync_category_tag_slugs( $term, $taxonomy ) {
 if( $taxonomy == 'category' || $taxonomy == 'post_tag' ) {
  if( is_object( $term ) ) {
   if($term-&gt;slug){
    $term-&gt;slug = sanitize_title( $term-&gt;slug );
   }else{
    $term-&gt;slug = sanitize_title( $term-&gt;name );
   }
  } else {
   if($term[ 'slug' ]){
    $term[ 'slug' ] = sanitize_title( $term[ 'slug' ] );
   }else{
    $term[ 'slug' ] = sanitize_title( $term[ 'name' ] );
   }
  }
 }
 return $term;
}
}
</pre>
<p>そうそう、自動アップグレードしたときは、該当ファイルをダウンロードしてから修正しないといけないです。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/88/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPMU 2.6:任意のブログ記事の表示</title>
		<link>http://wb.corekuuma.com/archives/86</link>
		<comments>http://wb.corekuuma.com/archives/86#comments</comments>
		<pubDate>Thu, 09 Oct 2008 00:53:33 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/?p=86</guid>
		<description><![CDATA[WordPress MU 2.6にアップグレードしたら、他のブログ記事が表示されなくなったので調べてみたら、便利になってました。
これまでは、set_prefix(○○)でブログテーブルを変えてたのが、set_blog_id(ブログID)でできるようになってます。
home.phpなどで使用するときは、
global $wpdb;
$wpdb-&#62;set_blog_id(2);
こんな感じでブログを指定し、その後にquery_posts()やhave_posts()で記事の取得ができます。
おおー、便利。
なんだけど、今まで使ってたset_prefix()の挙動が変わってるので、全部これに修正しないと。ちょっと手間。
]]></description>
			<content:encoded><![CDATA[<p>WordPress MU 2.6にアップグレードしたら、他のブログ記事が表示されなくなったので調べてみたら、便利になってました。</p>
<p>これまでは、set_prefix(○○)でブログテーブルを変えてたのが、set_blog_id(ブログID)でできるようになってます。</p>
<p>home.phpなどで使用するときは、</p>
<p>global $wpdb;<br />
$wpdb-&gt;set_blog_id(2);</p>
<p>こんな感じでブログを指定し、その後にquery_posts()やhave_posts()で記事の取得ができます。</p>
<p>おおー、便利。<br />
なんだけど、今まで使ってたset_prefix()の挙動が変わってるので、全部これに修正しないと。ちょっと手間。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/86/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XAMPPにWordPress mu</title>
		<link>http://wb.corekuuma.com/archives/78</link>
		<comments>http://wb.corekuuma.com/archives/78#comments</comments>
		<pubDate>Wed, 09 Jul 2008 07:00:49 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/?p=78</guid>
		<description><![CDATA[XAMPPにWordPress muを入れてみました。
まず、muのいれてあるディレクトリを、http://○○.localhost/でアクセスできるようにします。
localhostのサブドメインってことね。
今回は、D:/（フォルダ名）に入れました。
次に、RewriteEngineが動くようにします。
XAMPPのhttpd.conf,httpd-vhosts.confの設定を変えます。
あとは、インストールするときにサブドメインじゃなくて、サブディレクトリ運用にすればOK。
ワイルドカードサブドメインは出来ませんでした。
それでは、ひとつずつ、手順をメモ。
Apatchの設定
1.httpd-vhosts.confの設定
C:\xampp\apache\conf\extra\httpd-vhosts.confの最後に以下を追加。
D:/（フォルダ名）のところは、muを設置したフォルダを参照。

NameVirtualHost *:80
&#60;VirtualHost *:80&#62;
    DocumentRoot C:/xampp/htdocs
    ServerName localhost
&#60;/VirtualHost&#62;

&#60;VirtualHost *:80&#62;
    DocumentRoot D:/（フォルダ名）
    ServerName ○○.localhost
&#60;/VirtualHost&#62;

&#60;Directory &#34;D:/（フォルダ名）&#34;&#62;
order deny,allow
allow from ALL
AllowOverride All
&#60;/Directory&#62;

2.httpd.confの設定
C:\xampp\apache\conf\httpd.confの119行目あたりにある、rewrite_moduleのところの#をはずし、rewrite_moduleを有効に。

LoadModule rewrite_module modules/mod_rewrite.so

3.サブドメインでlocalhostにアクセスできるようにする
C:\WINDOWS\system32\drivers\etc\hostsをテキストエディタで開き、サブドメインを追加。
127.0.0.1       localhost　のあとに、
127.0.0.1       ○○.localhost
4.XAMPPを再起動
できたら、XAMPPを再起動。忘れずに。。。
]]></description>
			<content:encoded><![CDATA[<p>XAMPPにWordPress muを入れてみました。</p>
<p>まず、muのいれてあるディレクトリを、http://○○.localhost/でアクセスできるようにします。<br />
localhostのサブドメインってことね。<br />
今回は、D:/（フォルダ名）に入れました。</p>
<p>次に、RewriteEngineが動くようにします。<br />
XAMPPのhttpd.conf,httpd-vhosts.confの設定を変えます。</p>
<p>あとは、インストールするときにサブドメインじゃなくて、サブディレクトリ運用にすればOK。<br />
ワイルドカードサブドメインは出来ませんでした。</p>
<p>それでは、ひとつずつ、手順をメモ。<span id="more-78"></span></p>
<h3>Apatchの設定</h3>
<h4>1.httpd-vhosts.confの設定</h4>
<p>C:\xampp\apache\conf\extra\httpd-vhosts.confの最後に以下を追加。<br />
D:/（フォルダ名）のところは、muを設置したフォルダを参照。</p>
<pre name="code" class="php">
NameVirtualHost *:80
&lt;VirtualHost *:80&gt;
    DocumentRoot C:/xampp/htdocs
    ServerName localhost
&lt;/VirtualHost&gt;

&lt;VirtualHost *:80&gt;
    DocumentRoot D:/（フォルダ名）
    ServerName ○○.localhost
&lt;/VirtualHost&gt;

&lt;Directory &quot;D:/（フォルダ名）&quot;&gt;
order deny,allow
allow from ALL
AllowOverride All
&lt;/Directory&gt;
</pre>
<h4>2.httpd.confの設定</h4>
<p>C:\xampp\apache\conf\httpd.confの119行目あたりにある、rewrite_moduleのところの#をはずし、rewrite_moduleを有効に。</p>
<pre name="code" class="php">
LoadModule rewrite_module modules/mod_rewrite.so
</pre>
<h4>3.サブドメインでlocalhostにアクセスできるようにする</h4>
<p>C:\WINDOWS\system32\drivers\etc\hostsをテキストエディタで開き、サブドメインを追加。</p>
<p>127.0.0.1       localhost　のあとに、<br />
127.0.0.1       ○○.localhost</p>
<h4>4.XAMPPを再起動</h4>
<p>できたら、XAMPPを再起動。忘れずに。。。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/78/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MUでSyntaxHighlighterは動きませんが</title>
		<link>http://wb.corekuuma.com/archives/74</link>
		<comments>http://wb.corekuuma.com/archives/74#comments</comments>
		<pubDate>Mon, 30 Jun 2008 13:28:37 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WPMUエラー]]></category>
		<category><![CDATA[WPMUプラグイン]]></category>
		<category><![CDATA[WPプラグイン]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[CORESERVER]]></category>
		<category><![CDATA[SyntaxHighlighter]]></category>
		<category><![CDATA[WordPress2.5]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/?p=74</guid>
		<description><![CDATA[wordpressのお話。
SyntaxHighlighterは、コードをそれっぽく表示してくれるプラグインです。
http://wordpress.org/extend/plugins/syntaxhighlighter/
こちらからダウンロードできます。
しかし、MUではそのままでは動きません。
というのも、プラグインの中に、filesフォルダがあって、その名前が不具合を起こすのです。
だから、files→fileなどに変更し、syntaxhighlighter.phpの70行目あたりを

 $this-&#62;pluginurl = apply_filters( 'agsyntaxhighlighter_url', get_bloginfo( 'wpurl' ) . '/wp-content/plugins/syntaxhighlighter/file/' );

にすればOKよ。
MUは、.htaccessでfilesをrewriteするようになってるので、filesフォルダがある場合は注意です。
当方環境はMU1.5です。
]]></description>
			<content:encoded><![CDATA[<p>wordpressのお話。<br />
SyntaxHighlighterは、コードをそれっぽく表示してくれるプラグインです。</p>
<p><a href="http://wordpress.org/extend/plugins/syntaxhighlighter/">http://wordpress.org/extend/plugins/syntaxhighlighter/</a><br />
こちらからダウンロードできます。</p>
<p>しかし、MUではそのままでは動きません。<span id="more-74"></span></p>
<p>というのも、プラグインの中に、filesフォルダがあって、その名前が不具合を起こすのです。<br />
だから、files→fileなどに変更し、syntaxhighlighter.phpの70行目あたりを</p>
<pre name="code" class="php">
 $this-&gt;pluginurl = apply_filters( 'agsyntaxhighlighter_url', get_bloginfo( 'wpurl' ) . '/wp-content/plugins/syntaxhighlighter/file/' );
</pre>
<p>にすればOKよ。</p>
<p>MUは、.htaccessでfilesをrewriteするようになってるので、filesフォルダがある場合は注意です。</p>
<p>当方環境はMU1.5です。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/74/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPressサイト全体にログイン認証をかける</title>
		<link>http://wb.corekuuma.com/archives/62</link>
		<comments>http://wb.corekuuma.com/archives/62#comments</comments>
		<pubDate>Fri, 18 Apr 2008 02:54:10 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WPプラグイン]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/archives/62</guid>
		<description><![CDATA[WordPressでつくったサイトを会員制にしたり、SNSっぽくしたりするときに使える（ような気がする）プラグインがこれです。
MUでも使えます。
※2008.06.01追記：MUの場合、サブドメイン運用ではダメでした。
Angsuman&#8217;s Authenticated WordPress Plugin
WordPress2.5では動かないので、上のサイトのコメントを参考に修正します。
ac_authenticator.phpの17行目付近
if ( (!empty($_COOKIE[USER_COOKIE]) &#38;&#38;
    !wp_login($_COOKIE[USER_COOKIE], $_COOKIE[PASS_COOKIE], true)) &#124;&#124;
    (empty($_COOKIE[USER_COOKIE])) ) {
ここを
if ( !is_user_logged_in() ){
これに。
ユーザーがログインしてるかどうかの判別が簡単になったんですね。
]]></description>
			<content:encoded><![CDATA[<p>WordPressでつくったサイトを会員制にしたり、SNSっぽくしたりするときに使える（ような気がする）プラグインがこれです。<br />
MUでも使えます。</p>
<p>※2008.06.01追記：MUの場合、サブドメイン運用ではダメでした。</p>
<p><a href="http://blog.taragana.com/index.php/archive/angsumans-authenticated-wordpress-plugin-password-protection-for-your-wordpress-blog/">Angsuman&#8217;s Authenticated WordPress Plugin</a></p>
<p>WordPress2.5では動かないので、上のサイトのコメントを参考に修正します。<br />
ac_authenticator.phpの17行目付近</p>
<blockquote><p>if ( (!empty($_COOKIE[USER_COOKIE]) &amp;&amp;<br />
    !wp_login($_COOKIE[USER_COOKIE], $_COOKIE[PASS_COOKIE], true)) ||<br />
    (empty($_COOKIE[USER_COOKIE])) ) {</p></blockquote>
<p>ここを</p>
<blockquote><p>if ( !is_user_logged_in() ){</p></blockquote>
<p>これに。<br />
ユーザーがログインしてるかどうかの判別が簡単になったんですね。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/62/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress MU　1.5？</title>
		<link>http://wb.corekuuma.com/archives/61</link>
		<comments>http://wb.corekuuma.com/archives/61#comments</comments>
		<pubDate>Thu, 17 Apr 2008 09:52:53 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/2008/04/17/wordpress-mu%e3%80%8015%ef%bc%9f/</guid>
		<description><![CDATA[WordPress 2.5 のMU版、たぶんMU1.5が進んでいるようです。
不安定版（って書いてある）があったので、入れてみました。
1.3の時は、管理画面のブログ切り替えがポップアップメニューみたいだったのですが、1.5はタブになったんですね。
正式リリースが待ち遠しいです。
こちらの、一番下のZip Archiveからダウンロードしました。
http://trac.mu.wordpress.org/browser/trunk
]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.5 のMU版、たぶんMU1.5が進んでいるようです。<br />
不安定版（って書いてある）があったので、入れてみました。</p>
<p>1.3の時は、管理画面のブログ切り替えがポップアップメニューみたいだったのですが、1.5はタブになったんですね。<br />
正式リリースが待ち遠しいです。</p>
<p>こちらの、一番下のZip Archiveからダウンロードしました。<br />
<a href="http://trac.mu.wordpress.org/browser/trunk">http://trac.mu.wordpress.org/browser/trunk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/61/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress 2.5のリリース、22年後に迫る。</title>
		<link>http://wb.corekuuma.com/archives/53</link>
		<comments>http://wb.corekuuma.com/archives/53#comments</comments>
		<pubDate>Fri, 28 Mar 2008 03:41:56 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/2008/03/28/wordpress-25%e3%81%ae%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9%e3%80%8122%e5%b9%b4%e5%be%8c%e3%81%ab%e8%bf%ab%e3%82%8b%e3%80%82/</guid>
		<description><![CDATA[
Wordpress 2.5 のリリースを心待ちにしている者の一人ですが、ついに22年後（2030年4月1日）にリリースされるようです。
http://trac.wordpress.org/milestone/2.5
WordPress 2.5 RC1(開発者向け)でIEからの画像アップロードや、携帯プラグインの動作確認もしてあるので、あとは正規リリース待ち。
現在はWordPress 2.5 RC2がリリースされてる様子です。
http://ja.wordpress.org/2008/03/26/wordpress-25-rc2/
その後はMUへの対応ですね。
2.3から互換性が増してるようなので、意外と早くリリースされそうな気もします（23年後くらい？）が、どうでしょう？
]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox[pics-1206674985]" href="http://wb.corekuuma.com/files/mile2.jpg" title="WP2.5"><img width="400" src="http://wb.corekuuma.com/files/mile2.thumbnail.jpg" alt="WP2.5" height="91" /></a><img border="0" width="1" src="http://wb.corekuuma.com/wp-admin/" height="1" /></p>
<p>Wordpress 2.5 のリリースを心待ちにしている者の一人ですが、ついに22年後（2030年4月1日）にリリースされるようです。<br />
<a href="http://trac.wordpress.org/milestone/2.5">http://trac.wordpress.org/milestone/2.5</a></p>
<p>WordPress 2.5 RC1(開発者向け)でIEからの画像アップロードや、携帯プラグインの動作確認もしてあるので、あとは正規リリース待ち。<br />
現在はWordPress 2.5 RC2がリリースされてる様子です。<br />
<a href="http://ja.wordpress.org/2008/03/26/wordpress-25-rc2/">http://ja.wordpress.org/2008/03/26/wordpress-25-rc2/</a></p>
<p>その後はMUへの対応ですね。</p>
<p>2.3から互換性が増してるようなので、意外と早くリリースされそうな気もします（23年後くらい？）が、どうでしょう？</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/53/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress：記事の表示を更新順に。</title>
		<link>http://wb.corekuuma.com/archives/48</link>
		<comments>http://wb.corekuuma.com/archives/48#comments</comments>
		<pubDate>Mon, 17 Mar 2008 15:12:19 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/2008/03/18/modified/</guid>
		<description><![CDATA[軽いグループウェアみたいなのをWordPress MUで作ろうと思って、記事の一覧を作成日順じゃなくて、最終更新日順にしたいと思ったのです。
query_postsの中を覗いてみると、orederbyってのがある。
modifiedってのもある。
query_posts(orderby=&#8217;modified&#8217;);
これでいけちゃいました。
orderbyには他にもいろいろ設定されてて、記事を名前順に並べたりもできるようになってるのでした。
検証環境：WordPress 2.3.3WordPress MU 1.3.3
]]></description>
			<content:encoded><![CDATA[<p>軽いグループウェアみたいなのをWordPress MUで作ろうと思って、記事の一覧を作成日順じゃなくて、最終更新日順にしたいと思ったのです。</p>
<p>query_postsの中を覗いてみると、orederbyってのがある。<br />
modifiedってのもある。</p>
<blockquote><p>query_posts(orderby=&#8217;modified&#8217;);</p></blockquote>
<p>これでいけちゃいました。</p>
<p>orderbyには他にもいろいろ設定されてて、記事を名前順に並べたりもできるようになってるのでした。</p>
<p>検証環境：WordPress 2.3.3WordPress MU 1.3.3</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/48/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress MUに携帯投稿</title>
		<link>http://wb.corekuuma.com/archives/38</link>
		<comments>http://wb.corekuuma.com/archives/38#comments</comments>
		<pubDate>Wed, 27 Feb 2008 19:13:51 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WPMUプラグイン]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[携帯投稿]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/2008/02/28/wordpress-mu%e3%81%ab%e6%90%ba%e5%b8%af%e6%8a%95%e7%a8%bf/</guid>
		<description><![CDATA[携帯から投稿するというニーズはありますね。
Wordpress のマルチバイト文字対応メール投稿(3)
こいつを使ってみました。便利。
WordPress2.3.3では問題なく動いたのですが、MUではちょっとてこずった。
具体的には、charset（文字コード）とdefault_email_category（メールの不デフォルトカテゴリー）が取得できてなかったので、無理矢理自分の環境にあわせて書き直したのです。
ひょっとしたらMUの方がいけないのかな。
他のとこにも不具合あるし。
とりあえずMUでも使えるということでした。
]]></description>
			<content:encoded><![CDATA[<p>携帯から投稿するというニーズはありますね。</p>
<p><a href="http://spais.jp/2007/10/04/119/">Wordpress のマルチバイト文字対応メール投稿(3)</a></p>
<p>こいつを使ってみました。便利。<br />
WordPress2.3.3では問題なく動いたのですが、MUではちょっとてこずった。</p>
<p>具体的には、charset（文字コード）とdefault_email_category（メールの不デフォルトカテゴリー）が取得できてなかったので、無理矢理自分の環境にあわせて書き直したのです。</p>
<p>ひょっとしたらMUの方がいけないのかな。<br />
他のとこにも不具合あるし。</p>
<p>とりあえずMUでも使えるということでした。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/38/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
