<?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>Collision du rythme Weblog &#187; plugin</title>
	<atom:link href="http://www.collisiondurythme.com/tag/plugin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.collisiondurythme.com</link>
	<description>Collision du rythme Weblog { 67% Design has been completed }</description>
	<lastBuildDate>Fri, 09 Jul 2010 04:49:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress2.8でAmazon reload</title>
		<link>http://www.collisiondurythme.com/wordpress2-8-amazon-reload</link>
		<comments>http://www.collisiondurythme.com/wordpress2-8-amazon-reload#comments</comments>
		<pubDate>Sun, 20 Sep 2009 22:41:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.collisiondurythme.com/?p=1031</guid>
		<description><![CDATA[AMAZONのAPIシステムの変更により、8/15/2009よりAccesskey IDとSecret Access Keyが必要となったのに伴い、AMAZON Reloadで画像が表示されなくななった。プラグインの本家では以後、改訂版をリ [...]]]></description>
			<content:encoded><![CDATA[<p>AMAZONのAPIシステムの変更により、8/15/2009よりAccesskey IDとSecret Access Keyが必要となったのに伴い、AMAZON Reloadで画像が表示されなくななった。プラグインの本家では以後、改訂版をリリースする予定だと暫定的な補助プラグインを作ったサイトでコメントしていましたが、未だリリースされず。<a href="http://blog.nsp-momo.com/it/software/wordpress%E3%81%AE%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3-amazon-reloaded%E3%82%92%E4%BB%95%E6%A7%98%E5%A4%89%E6%9B%B4%E5%BE%8C%E3%81%AE-amazon-api%E3%81%AB%E5%AF%BE%E5%BF%9C%E3%81%97%E3%81%A6/" title="NSP-mono blog">NSP-mono blog</a>さんがプラグインをリリースされているので、解説されている手順を踏んだら、Wordpress2.8でもしっかりと表示されるようになりました。有難うございます。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.collisiondurythme.com/wordpress2-8-amazon-reload/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>55文字のマルチバイトPlugin</title>
		<link>http://www.collisiondurythme.com/wp-multibyte-patch-plugin</link>
		<comments>http://www.collisiondurythme.com/wp-multibyte-patch-plugin#comments</comments>
		<pubDate>Wed, 25 Feb 2009 18:00:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[webdesign]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.collisiondurythme.com/?p=773</guid>
		<description><![CDATA[Wordpressのループタグである&#60;?the_excerpt();?&#62;は、投稿の最初の55文字の単語の抜粋を文末に [...]をつけて表示するが、日本語では半角ではないため、55単語の区切りを判定できず、すべての内容が出力され [...]]]></description>
			<content:encoded><![CDATA[<p><span class="push">W</span>ordpressのループタグである&lt;?the_excerpt();?&gt;は、投稿の最初の55文字の単語の抜粋を文末に [...]をつけて表示するが、日本語では半角ではないため、55単語の区切りを判定できず、すべての内容が出力されてしまう。WordPress 日本語版では、マルチバイト関連の問題に対処するために WP Multibyte Patch プラグインを同梱していて、このプラグインを使用するとデフォルトでは110文字までを抜粋文として出力できるが、Wordpress本家版を使っていると個別に設定が必要。<a href="http://eastcoder.com/code/wp-multibyte-patch">WP Multibyte PatchはEastCoder</a>からダウンロード可能。使い方はダウンロードしてPluginフォルダーにアップロード。その後、Pluginsのパネルでアクティブ化するだけで可能。<br />
また出力もデフォルトで設定されている<strong>&#8216;excerpt_mblength&#8217; =&gt; 110</strong>の当該箇所をコンロロールパネルのプラグインエディターによって下記のように180などと書き換えられる。</p>
<pre><code>var $conf = array(
	                'excerpt_length' =&gt; 55,
	                'excerpt_mblength' =&gt; 180,
	                'comment_excerpt_length' =&gt; 20,
	                'comment_excerpt_mblength' =&gt; 40,
	                'patch_wp_mail' =&gt; true,
	                'patch_incoming_trackback' =&gt; true,
	                'patch_incoming_pingback' =&gt; true,
	                'patch_wp_trim_excerpt' =&gt; true,
	                'patch_get_comment_excerpt' =&gt; true,
	                'patch_process_search_terms' =&gt; true,
	                'patch_admin_custom_css' =&gt; true,
	                'patch_word_count_js' =&gt; true
	            );</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.collisiondurythme.com/wp-multibyte-patch-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
