<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>oganosin blog&#187; Ktai Style</title>
	<atom:link href="http://www.oganosin.net/blog/tag/ktai-style/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oganosin.net/blog</link>
	<description>oganosin weblog</description>
	<lastBuildDate>Wed, 21 Jul 2010 03:00:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.oganosin.net/blog/tag/ktai-style/feed/" />
		<item>
		<title>Ktai Style でメタタグを追加する方法</title>
		<link>http://www.oganosin.net/blog/wordpress/20090517/</link>
		<comments>http://www.oganosin.net/blog/wordpress/20090517/#comments</comments>
		<pubDate>Sun, 17 May 2009 06:04:10 +0000</pubDate>
		<dc:creator>oganosin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[function.php]]></category>
		<category><![CDATA[Ktai Style]]></category>
		<category><![CDATA[携帯表示]]></category>

		<guid isPermaLink="false">http://www.oganosin.net/blog/?p=80</guid>
		<description><![CDATA[Ktai Styleで携帯表示を行っているとメタタグのkeywordとdescriptionが表示されないみたい。
All in one SEO pack と併用すればwp_head内で設定されるのかなーと思ったけれども [...]]]></description>
			<content:encoded><![CDATA[<p>Ktai Styleで携帯表示を行っているとメタタグのkeywordとdescriptionが表示されないみたい。<br />
All in one SEO pack と併用すればwp_head内で設定されるのかなーと思ったけれども、どうやら出力されない。というわけでKtai Style用のテーマのfunction.php内に以下のコードを追加して対応してみた。<br />
All in one SEO packとktai styleの併用はよくないようなのでしばらくこれで様子を見よう。</p>
<pre>
function addMetatags(){
	global $post;
	if(is_single() || is_page()){
		if( $post-&gt;post_excerpt != '' ){
			echo '&lt;meta name="description" content="' . $post-&gt;post_excerpt . '" /&gt;';
		}else{
			echo '&lt;meta name="description" content="'
				. htmlspecialchars($post-&gt;post_title)
				. '" /&gt;';
		}
		echo '&lt;meta name="Keywords" content="';
		foreach(get_the_tags($post-&gt;ID) as $tag ){
			echo $tag-&gt;name . ", ";
		}
		echo '" /&gt;';
	}elseif(is_category()){
		echo '&lt;meta name="description" content="'
			. htmlspecialchars(strip_tags(category_description()))
			. '" /&gt;';
		echo '&lt;meta name="Keywords" content="default keywords" /&gt;';
	}else{
		echo '&lt;meta name="description" content="default keywords" /&gt;';
		echo '&lt;meta name="Keywords" content="default keywords" /&gt;';
	}
}
add_action('wp_head', 'addMetatags');
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.oganosin.net/blog/wordpress/20090517/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.oganosin.net/blog/wordpress/20090517/" />
	</item>
		<item>
		<title>Wordpressで使ってみたPlugin</title>
		<link>http://www.oganosin.net/blog/wordpress/20090416/</link>
		<comments>http://www.oganosin.net/blog/wordpress/20090416/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 02:54:03 +0000</pubDate>
		<dc:creator>oganosin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[AdSense Manager]]></category>
		<category><![CDATA[All in One SEO Pack]]></category>
		<category><![CDATA[Ktai Entry]]></category>
		<category><![CDATA[Ktai Style]]></category>
		<category><![CDATA[Twitter Tools]]></category>
		<category><![CDATA[Ultimate Google Analytics]]></category>
		<category><![CDATA[WP Super Cash]]></category>
		<category><![CDATA[wp-tmkm-amazon]]></category>

		<guid isPermaLink="false">http://www.oganosin.net/blog/?p=18</guid>
		<description><![CDATA[今回Wordpressを使用するにあたって設定してみたPluginは以下の通り

AdSense Manager
All in One SEO Pack
Ktai Entry
Ktai Style
Twitter Too [...]]]></description>
			<content:encoded><![CDATA[<p>今回Wordpressを使用するにあたって設定してみたPluginは以下の通り</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/adsense-manager/">AdSense Manager</a></li>
<li><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO Pack</a></li>
<li><a href="http://wppluginsj.sourceforge.jp/ktai_entry/">Ktai Entry</a></li>
<li><a href="http://wppluginsj.sourceforge.jp/ktai_style/">Ktai Style</a></li>
<li><a href="http://wordpress.org/extend/plugins/twitter-tools/">Twitter Tools</a></li>
<li><a href="http://wordpress.org/extend/plugins/ultimate-google-analytics/">Ultimate Google Analytics</a></li>
<li><a href="http://wppluginsj.sourceforge.jp/wp-tmkm-amazon/">wp-tmkm-amazon</a></li>
<li><a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cash</a>
<li>WP Multibyte Patch</li>
</ul>
<p>でもまだ設定できていないものもばかりw<br />
まあ実際に使ってみながらレビューしていきます。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oganosin.net/blog/wordpress/20090416/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.oganosin.net/blog/wordpress/20090416/" />
	</item>
	</channel>
</rss>
