<?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>around design</title>
	<atom:link href="http://aroun-d.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://aroun-d.com</link>
	<description>大阪在住フリーランスのWebディレクター／デザイナー／エンジニアのブログ。写真、読書、技術メモなど。</description>
	<lastBuildDate>Tue, 15 May 2012 08:07:36 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>[jQuery] 画像をフェードしながら順番に表示</title>
		<link>http://aroun-d.com/2012/05/14/3868/</link>
		<comments>http://aroun-d.com/2012/05/14/3868/#comments</comments>
		<pubDate>Mon, 14 May 2012 14:56:48 +0000</pubDate>
		<dc:creator>nishi</dc:creator>
				<category><![CDATA[Ajax・Javascript]]></category>
		<category><![CDATA[技術的なこと]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://aroun-d.com/?p=3868</guid>
		<description><![CDATA[画像の一覧をページが表示されたときに、順番にフェードしながら表示するjQuery。 あんまりやりすぎるとくどくなったりもするのですが、 イメージを打ち出したいポートレート系のサイトなどではいい感じになると思います。 de [...]]]></description>
			<content:encoded><![CDATA[<p>
画像の一覧をページが表示されたときに、順番にフェードしながら表示するjQuery。<br />
あんまりやりすぎるとくどくなったりもするのですが、<br />
イメージを打ち出したいポートレート系のサイトなどではいい感じになると思います。<br />
<br />
<span id="more-3868"></span><br />
delay()メソッドを使用しているので、jQueryは1.4以上が必要になります。<br />
jQueryだけのお手軽コードで動くのもかなりうれしいですね。<br />
<br />
<code>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;<br />
	$(function () {<br />
		$('#imagelist li').hide();<br />
		$('#imagelist li').each(function (i) {<br />
			$(this).delay(i * 100).fadeIn(1000);<br />
		});<br />
	});<br />
&lt;/script&gt;</code><br />
<br />
参考サイト<br />
<a href="http://depthcode.com/2010/11/fadebox.html"  target="_blank">http://depthcode.com/2010/11/fadebox.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://aroun-d.com/2012/05/14/3868/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Mac] Xcodeのインストールでアプリ開発環境がようやく完成！</title>
		<link>http://aroun-d.com/2012/05/08/3865/</link>
		<comments>http://aroun-d.com/2012/05/08/3865/#comments</comments>
		<pubDate>Tue, 08 May 2012 13:45:48 +0000</pubDate>
		<dc:creator>nishi</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[アプリ開発]]></category>

		<guid isPermaLink="false">http://aroun-d.com/?p=3865</guid>
		<description><![CDATA[先日OSをLionにアップデートできたので、今度はXcodeのインストールです。 他のサイトなどをいろいろ見ていると、Xcodeは有料という記事も多くありますが、 Lionになってからは無料になっているようで、App S [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://aroun-d.com/weblog/wp-content/uploads/2012/05/photo20120508_01.jpg"  rel="lightbox[3865]"><img src="http://aroun-d.com/weblog/wp-content/uploads/2012/05/photo20120508_01-700x476.jpg" alt="iOS SDK" title="iOS SDK" width="700" height="476" class="alignnone size-medium wp-image-3866" /></a><br />
<br />
先日OSをLionにアップデートできたので、今度はXcodeのインストールです。<br />
他のサイトなどをいろいろ見ていると、Xcodeは有料という記事も多くありますが、<br />
Lionになってからは無料になっているようで、App Storeからダウンロードしてインストールしました。<br />
相変わらずダウンロードにはまあまあ時間がかかりましたが。<br />
<br />
<span id="more-3865"></span><br />
そして、本などの情報ではiOS SDKはDeveloperフォルダにインストールされるとありましたが、<br />
これも仕様が変わって、普通にアプリケーションのフォルダにインストールされます。<br />
アプリケーションフォルダのXcodeをクリックして起動！<br />
<br />
ところが、本とかを見る限りでは、Welcomeのラウンチ画面が表示されるようなのですが、<br />
どうもそれらしい画面が出てこない。。<br />
何かインストールがうまくいっていないのだろうか？？など調べてみてもピンとくるものがなく、<br />
とりあえずでメニューのFile＞New＞Project とやってみると、<br />
問題なくプロジェクトを作る画面が表示され、無事にアプリ開発の画面になりました。<br />
<br />
インストールだけで長い道のりだったのでちょい感動です。<br />
といっても本当はAndroidも一緒に開発できるTitaniumを使おうかと思っていたのです。<br />
これをまたインストール・設定するのかと思うとちょい腰が重たかったり、、<br />
とりあえずはObjective-Cでちょこちょこ勉強しようと思います。<br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://aroun-d.com/2012/05/08/3865/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Google] サイトの表示速度を改善すればSEO効果もアップ。Chrome拡張機能「Page Speed」</title>
		<link>http://aroun-d.com/2012/05/06/3861/</link>
		<comments>http://aroun-d.com/2012/05/06/3861/#comments</comments>
		<pubDate>Sun, 06 May 2012 13:21:59 +0000</pubDate>
		<dc:creator>nishi</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[技術的なこと]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://aroun-d.com/?p=3861</guid>
		<description><![CDATA[WordPressを使っているとどうしても気になるのがサイトの表示速度。 サイトを見る人のストレスもそうですが、Googleの検索順位に表示速度も影響があるとされています。 まずなんといっても表示スピードの測定ですが、こ [...]]]></description>
			<content:encoded><![CDATA[<p>
<img src="http://aroun-d.com/weblog/wp-content/uploads/2010/10/google_logo.jpg" alt="Google" title="Google" width="180" height="80" class="alignnone size-none wp-image-2762" />
<br />
WordPressを使っているとどうしても気になるのがサイトの表示速度。<br />
サイトを見る人のストレスもそうですが、Googleの検索順位に表示速度も影響があるとされています。<br />
<br />
まずなんといっても表示スピードの測定ですが、これはGoogleのウェブマスターツールや、<br />
そのほかにも表示速度測定ができるサイトがいくつかあります。<br />
<br />
<span id="more-3861"></span><br />
<a href="http://www.google.com/webmasters/tools/?hl=ja"  target="_blank">Googleウェブマスターツール</a><br />
<a href="http://site-speed.podzone.net/index.cgi"  target="_blank">サイト表示スピード測定 | サーバレスポンス時間測定</a><br />
<br />
そしてどういったところを改善すればよいのか教えてくれるChrome拡張機能が<br />
Page Speedです。（Firefoxのアドオンもあるようです）<br />
<br />
改善点はすべてがすべて実行できるものではないですが、<br />
点数が低い場合には、ちょっとでも改善していく必要があるのではないかと思います。<br />
<br />
参考サイト<br />
<a href="http://blog.livedoor.jp/mintoa/archives/5419972.html"  target="_blank">http://blog.livedoor.jp/mintoa/archives/5419972.html</a><br />
<br />
<br />
また英語のサイトになりますが、下記にて紹介されているサイトも使いやすそうです。<br />
<a href="http://kachibito.net/web-service/pingdom-tools.html"  target="_blank">http://kachibito.net/web-service/pingdom-tools.html</a><br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://aroun-d.com/2012/05/06/3861/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Mac] Lionをインストール</title>
		<link>http://aroun-d.com/2012/05/03/3856/</link>
		<comments>http://aroun-d.com/2012/05/03/3856/#comments</comments>
		<pubDate>Thu, 03 May 2012 14:15:42 +0000</pubDate>
		<dc:creator>nishi</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://aroun-d.com/?p=3856</guid>
		<description><![CDATA[ついにLionをMacにインストールすることにしました。 これまで特にLionにしたいという決め手がなかったのですが、 （iCloudもそれほど必要でなかったので） XcodeのSnowLeopard版がいくらやってもエ [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://aroun-d.com/weblog/wp-content/uploads/2012/05/photo20120503_01.jpg"  rel="lightbox[3856]"><img src="http://aroun-d.com/weblog/wp-content/uploads/2012/05/photo20120503_01-700x542.jpg" alt="Lionインストール" title="Lionインストール" width="700" height="542" class="alignnone size-medium wp-image-3857" /></a><br />
<br />
ついにLionをMacにインストールすることにしました。<br />
これまで特にLionにしたいという決め手がなかったのですが、<br />
（iCloudもそれほど必要でなかったので）<br />
XcodeのSnowLeopard版がいくらやってもエラーでインストールできなかったので、<br />
あきらめてLionを入れることにした次第。<br />
まあ価格的が2,600円ということで大した金額でもないのでそこは安心です。<br />
<br />
<span id="more-3856"></span><br />
しかしLionにしてもXcodeにしても、ダウンロードやらインストールやらに<br />
すごい時間かかるんですよねー。<br />
夜から作業を始めると朝まで放っておくかって感じになるのがちょい面倒です。<br />
<br />
そして！噂には聞いていましたが、マウスのスクロール方向が逆になったのは<br />
違和感たっぷりです。<br />
こういった基本操作の部分を変更するというのは大きな決断ですし、<br />
ブーイングもかなりありそうですが、そのあたりはAppleならではという感じでしょうか。<br />
<br />
とりあえず、これでようやくiOS SDKを使うことができます。<br />
本買ってからめっちゃ時間たってしまってますが。。<br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://aroun-d.com/2012/05/03/3856/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[読書] ドミノ</title>
		<link>http://aroun-d.com/2012/04/27/3848/</link>
		<comments>http://aroun-d.com/2012/04/27/3848/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 14:20:03 +0000</pubDate>
		<dc:creator>nishi</dc:creator>
				<category><![CDATA[★★★★]]></category>
		<category><![CDATA[読書]]></category>
		<category><![CDATA[恩田 陸]]></category>

		<guid isPermaLink="false">http://aroun-d.com/?p=3848</guid>
		<description><![CDATA[恩田 陸さんは実に多彩な小説を書かれますね。 この「ドミノ」はタイトルの通りに最初のドミノがひとつ倒れたら次々に倒れていくような 怒涛な展開が楽しめるドタバタストーリー。 気負うことなく気楽に小説を楽しみたいときにオスス [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://aroun-d.com/weblog/wp-content/uploads/2012/04/photo20120427_01.jpg"  rel="lightbox[3848]"><img src="http://aroun-d.com/weblog/wp-content/uploads/2012/04/photo20120427_01-700x525.jpg" alt="ドミノ" title="ドミノ" width="700" height="525" class="alignnone size-medium wp-image-3854" /></a><br />
<br />
恩田 陸さんは実に多彩な小説を書かれますね。<br />
この「ドミノ」はタイトルの通りに最初のドミノがひとつ倒れたら次々に倒れていくような<br />
怒涛な展開が楽しめるドタバタストーリー。<br />
気負うことなく気楽に小説を楽しみたいときにオススメです。<br />
<br />
<span id="more-3848"></span><br />
舞台は東京駅なのですが、まあ実際に東京駅を知らなくても十分楽しめます。<br />
また最初にある登場人物の一言も、興味をかなりそそりますが、<br />
登場人物の数がちょっと多いので、こちらも最初はさらっと読み流し、<br />
すべて読み終わった後や、ある程度読んだときに、戻りつつ読んでも楽しいです。<br />
<br />
特に登場人物のだれかに共感した！とか、あの場面が印象的といったこともないですが、<br />
本当に単純にストーリーを楽しめる1冊ではないかと思います。<br />
<br />
<div class="clearfix">
<div class="amazon_image"><span class="isbn_anchor"><a href="http://www.amazon.co.jp/o/ASIN/4043710011/hi10shin-22/" target="_blank" ><img src="http://ecx.images-amazon.com/images/I/51D03JHFKWL._SL160_.jpg" /></a></span></div>
<div class="star">
「ドミノ」<br />
恩田 陸<br />
角川文庫<br />
★★★★☆（4点）<br />
</div>
</div></p>
]]></content:encoded>
			<wfw:commentRss>http://aroun-d.com/2012/04/27/3848/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[jQuery] ブラウザサイズを変えたときにdivの幅などを変更</title>
		<link>http://aroun-d.com/2012/04/25/3839/</link>
		<comments>http://aroun-d.com/2012/04/25/3839/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 13:07:43 +0000</pubDate>
		<dc:creator>nishi</dc:creator>
				<category><![CDATA[Ajax・Javascript]]></category>
		<category><![CDATA[技術的なこと]]></category>
		<category><![CDATA[ｊQuery]]></category>

		<guid isPermaLink="false">http://aroun-d.com/?p=3839</guid>
		<description><![CDATA[ブラウザいっぱいに画像を使うといったサイトはよくあると思うのですが、 縦幅をブラウザにあわせようと思うと、画像以外の部分の幅は ブラウザサイズを変えるたびに可変になります。 単純にパーセントで幅が指定できれば問題ないのか [...]]]></description>
			<content:encoded><![CDATA[<p>
ブラウザいっぱいに画像を使うといったサイトはよくあると思うのですが、<br />
縦幅をブラウザにあわせようと思うと、画像以外の部分の幅は<br />
ブラウザサイズを変えるたびに可変になります。<br />
<br />
単純にパーセントで幅が指定できれば問題ないのかもしれませんが、<br />
jQueryを使って結構簡単に実現できるのでメモです。<br />
<br />
<span id="more-3839"></span><br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
&lt;!&#8211;<br />
function resizeEvent() {<br />
	//ブラウザサイズを変更したときに行う処理<br />
	$(&#8220;#content&#8221;).css(&#8220;width&#8221;, ($(window).width()-$(window).height()*1600/2200)+&#8221;px&#8221;);<br />
};<br />
<br />
var resizeTimer = null;<br />
$(window).bind(&#8216;resize&#8217;, function() {<br />
	if (resizeTimer) clearTimeout(resizeTimer);<br />
	resizeTimer = setTimeout(resizeEvent, 10);<br />
});<br />
&#8211;&gt;<br />
&lt;/script&gt;<br />
<br />
ちなみに1600、2200という数字は使用する画像の幅、高さです。<br />
#contentというのが画像以外の部分で、<br />
ブラウザの全体幅（$(window).width()）から<br />
高さが100％の画像の幅（$(window).height()*1600/2200）をマイナスします。<br />
<br />
そしてタイマー処理を使用して、ブラウザサイズを変更したときに<br />
resizeEvent()内の処理を実行します。<br />
なお、bodyのonLoadでもresizeEvent()を実行しておきましょう。<br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://aroun-d.com/2012/04/25/3839/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[jQuery] ページが表示されて少し後にふわっとレイヤーを表示</title>
		<link>http://aroun-d.com/2012/04/23/3842/</link>
		<comments>http://aroun-d.com/2012/04/23/3842/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 14:27:39 +0000</pubDate>
		<dc:creator>nishi</dc:creator>
				<category><![CDATA[Ajax・Javascript]]></category>
		<category><![CDATA[技術的なこと]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://aroun-d.com/?p=3842</guid>
		<description><![CDATA[ページが表示されたら一瞬遅れで、ポップアップのようなレイヤーを表示するjQueryです。 ポップアップを出すのはイヤがられることもありますが、 ちょっと興味を引かせたり、どうしても見てほしい案内を出すときには やっぱり便 [...]]]></description>
			<content:encoded><![CDATA[<p>
ページが表示されたら一瞬遅れで、ポップアップのようなレイヤーを表示するjQueryです。<br />
ポップアップを出すのはイヤがられることもありますが、<br />
ちょっと興味を引かせたり、どうしても見てほしい案内を出すときには<br />
やっぱり便利ではないかなと思います。<br />
<br />
<span id="more-3842"></span><br />
出しっぱなしではなく、クローズボタンをつけたり、<br />
何秒か表示させたら消すといったこともできるので、そういう工夫もいいかもしれませんね。<br />
<br />
<!--more--><br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
$(window).load(function() {<br />
	setTimeout(function () {<br />
		$(&#8220;#popup&#8221;).animate({opacity:&#8217;show&#8217;, bottom:&#8221;55&#8243;}, {duration:500, easing:&#8217;swing&#8217;})<br />
	}, 1000);<br />
});<br />
&lt;/script&gt;<br />
<br />
この例ではページの下のほうに表示するようにしています。<br />
CSSで#popupにdisplay:none;bottom:50px;を指定しています。<br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://aroun-d.com/2012/04/23/3842/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[MySQL] エラーメッセージを表示</title>
		<link>http://aroun-d.com/2012/04/20/3845/</link>
		<comments>http://aroun-d.com/2012/04/20/3845/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 14:01:28 +0000</pubDate>
		<dc:creator>nishi</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[技術的なこと]]></category>

		<guid isPermaLink="false">http://aroun-d.com/?p=3845</guid>
		<description><![CDATA[相変わらず基礎の基礎をメモっていきますが、、 クエリーの実行がエラーだった場合にエラーメッセージを表示する方法です。 mysql_query($query) or die(mysql_errno($link) . &#8 [...]]]></description>
			<content:encoded><![CDATA[<p>
相変わらず基礎の基礎をメモっていきますが、、<br />
クエリーの実行がエラーだった場合にエラーメッセージを表示する方法です。<br />
<br />
mysql_query($query) <br />
or die(mysql_errno($link) . &#8220;: &#8221; . mysql_error($link) . &#8220;\n&#8221;);<br />
<br />
mysql_errnoがエラーナンバーを出力、mysql_errorがエラーメッセージを出力します。<br />
$linkはデータベースの接続（mysql_connect）の戻り値の接続IDになります。<br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://aroun-d.com/2012/04/20/3845/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[WordPress] RSSにカスタム投稿タイプのカスタムフィールドを反映</title>
		<link>http://aroun-d.com/2012/04/17/3829/</link>
		<comments>http://aroun-d.com/2012/04/17/3829/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 14:44:44 +0000</pubDate>
		<dc:creator>nishi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[技術的なこと]]></category>
		<category><![CDATA[WordPressカスタム投稿タイプ]]></category>

		<guid isPermaLink="false">http://aroun-d.com/?p=3829</guid>
		<description><![CDATA[先の記事「カスタム投稿タイプでの投稿をRSSに反映」のやり方で、カスタム投稿タイプの記事をRSSに反映させると、 カスタムフィールドを使用していたため、タイトルしかうまく表示されていませんでした。 その中でカスタムフィー [...]]]></description>
			<content:encoded><![CDATA[<p>
<img src="http://aroun-d.com/weblog/wp-content/uploads/2010/02/icon_wp1.jpg" alt="" title="WordPress" width="180" height="80" class="alignnone size-none wp-image-1792" />
<br />
先の記事「<a href="http://aroun-d.com/2012/04/17/3819/" >カスタム投稿タイプでの投稿をRSSに反映</a>」のやり方で、カスタム投稿タイプの記事をRSSに反映させると、<br />
カスタムフィールドを使用していたため、タイトルしかうまく表示されていませんでした。<br />
<br />
その中でカスタムフィールドの値を表示させるにはfunction.phpに下記のコードを書きます。<br />
ついでに画像も表示させています。<br />
<br />
<span id="more-3829"></span><br />
<code>function my_feeds($content) {<br />
	global $post;<br />
	//指定したカスタム投稿タイプのときのみ、カスタムフィールドの値を取得<br />
	if (get_post_type() === 'カスタム投稿タイプ名') {<br />
		//画像の取得<br />
		$imagefield = get_imagefield('画像のカスタムフィールド名');<br />
		$medium_url =  wp_get_attachment_image_src($imagefield['id'],'medium');<br />
		//先頭に画像、通常の記事（content）の後に、カスタムフィールドの値を追加<br />
		$content = "&lt;p&gt;&lt;img src=\"" . $medium_url[0] . "\" /&gt;&lt;/p&gt;" . $content . get_post_meta($post->ID, 'テキストのカスタムフィールド名', true);<br />
	}<br />
	return $content;<br />
}<br />
add_filter('the_excerpt_rss', 'my_feeds');<br />
add_filter('the_content_feed', 'my_feeds');</code><br />
<br />
<br />
ちなみにRSSを確認していて、ChromeやFirefoxでRSSをリロードしても変更内容が反映されず、<br />
上記のコードがうまくいっていないのかと悩みました。<br />
どうやらキャッシュなんですかね。設定はあるのかもしれませんが。<br />
ちなみにIE9でRSSを見ると毎回リロードで変更できたので、<br />
何度も変更して確認するのには便利でした。</p>
]]></content:encoded>
			<wfw:commentRss>http://aroun-d.com/2012/04/17/3829/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[WordPress] カスタム投稿タイプでの投稿をRSSに反映</title>
		<link>http://aroun-d.com/2012/04/17/3819/</link>
		<comments>http://aroun-d.com/2012/04/17/3819/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 13:58:13 +0000</pubDate>
		<dc:creator>nishi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[技術的なこと]]></category>
		<category><![CDATA[WordPressカスタム投稿タイプ]]></category>

		<guid isPermaLink="false">http://aroun-d.com/?p=3819</guid>
		<description><![CDATA[カスタム投稿タイプを使用して記事を投稿すると、通常ではRSSに反映してくれません。 そこで、function.phpに下記のコードを追加することで、反映してくれるようになります。 // Custom Post Types [...]]]></description>
			<content:encoded><![CDATA[<p>
<img src="http://aroun-d.com/weblog/wp-content/uploads/2010/02/icon_wp1.jpg" alt="" title="WordPress" width="180" height="80" class="alignnone size-none wp-image-1792" />
<br />
カスタム投稿タイプを使用して記事を投稿すると、通常ではRSSに反映してくれません。<br />
そこで、function.phpに下記のコードを追加することで、反映してくれるようになります。<br />
<br />
<span id="more-3819"></span><br />
<code>// Custom Post Types for RSS<br />
function my_get_posts( $query ) {<br />
if ( is_feed() ) {<br />
$query->set( 'post_type', array('post', 'カスタム投稿タイプA', 'カスタム投稿タイプB', 'カスタム投稿タイプC'));<br />
return $query;<br />
}<br />
}<br />
add_filter( 'pre_get_posts', 'my_get_posts' );</code><br />
<br />
$query->set( &#8216;post_type&#8217;, array(&#8216;post&#8217;, &#8216;カスタム投稿タイプA&#8217;, &#8216;カスタム投稿タイプB&#8217;, &#8216;カスタム投稿タイプC&#8217;));<br />
array配列の最初の「post」が通常の投稿です。<br />
カスタム投稿タイプA、B、Cにはカスタム投稿タイプ名を入れます。<br />
<br />
もしカスタム投稿タイプAのみ使用していて、通常の投稿を使用していない場合は上記を<br />
$query->set( &#8216;post_type&#8217;, &#8216;カスタム投稿タイプA&#8217;);<br />
と変更します。<br />
<br />
<br />
参考サイト<br />
<a href="http://www.greenwich.co.jp/blog-archives/p/961"  target="_blank">http://www.greenwich.co.jp/blog-archives/p/961</a></p>
]]></content:encoded>
			<wfw:commentRss>http://aroun-d.com/2012/04/17/3819/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

