<?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>karak &#187; Wordpress</title>
	<atom:link href="http://www.karak.jp/articles/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.karak.jp</link>
	<description>Language and Translation</description>
	<lastBuildDate>Tue, 07 Feb 2012 04:31:01 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>WordPress &#8211; Download ePub プラグイン</title>
		<link>http://www.karak.jp/epub/wordpress-download-epub.html</link>
		<comments>http://www.karak.jp/epub/wordpress-download-epub.html#comments</comments>
		<pubDate>Fri, 23 Jul 2010 00:55:22 +0000</pubDate>
		<dc:creator>ctrans</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ePub]]></category>

		<guid isPermaLink="false">http://www.karak.jp/?p=1862</guid>
		<description><![CDATA[WordPressのエントリをePubに変換し、ダウンロードできるようにするプラグインを作成しました。 ダウンロード：Download ePub プラグイン( download-epub.zip ) システム要件 圧縮に [...]]]></description>
			<content:encoded><![CDATA[<p>WordPressのエントリをePubに変換し、ダウンロードできるようにするプラグインを作成しました。</p>
<p>ダウンロード：<a href="http://www.karak.jp/tool/download-epub.zip">Download ePub プラグイン( download-epub.zip )</a></p>
<h2>システム要件</h2>
<p>圧縮に<a href="http://pear.php.net/" target="_blank">PEAR</a>のFile/Archive.phpを利用しているため、同パッケージを使える必要があります。</p>
<h2>設置方法</h2>
<h3>サーバ側の設定</h3>
<ol>
<li>Download ePubプラグインのフォルダをサーバのpluginフォルダにアップロードします。</li>
<li>プラグインのフォルダ内にあるskeleton/OEBPSフォルダの属性を777にします。</li>
<li>wp-content/uploads内にepubというフォルダを作成し、属性を777にしてください。</li>
<li>wp-content/uploads/epubフォルダに以下を記した .htaccess を置きます（MIMEタイプの設定です）。</li>
<div class="box">
	AddHandler application/epub+zip .epub<br />
	AddType application/epub+zip .epub
	</div>
<li>ePubにフォントを同梱したい場合は、download-epub/skeleton/OEBPS/fontsにフォントをアップロードし、download-epub/skeleton/OEBPS/style.cssを適宜編集します。</li>
</ol>
<h3>WordPressの設定</h3>
<p>ダウンロード用のリンクを挿入する場所を決めて下さい。たとえば利用しているテーマのsingle.phpを開き、適当な位置に</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt; ?php if(isset($ePub)) $ePub-&gt;ePublisher(); ?&gt;</pre></div></div>

<p>を挿入します。このタグはページが表示される際に</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;epub&quot;&gt;&lt;a href=&quot;%s&quot; target=&quot;_blank&quot;&gt;Download ePub&lt;/a&gt;&lt;/div&gt;</pre></div></div>

<p>というePubをダウンロードするためのリンクに変換されます（このリンクは任意の形式に変更できます。下記「設定項目」を参照して下さい）。</p>
<h2>設定項目</h2>
<p>download-epub.phpの32行目から37行目までが設定項目です。</p>
<div class="box">
$this-&gt;ePub_dir → 作成したePubファイルを保存するディレクトリ<br />
$this-&gt;ePub_url → ePubが保存してあるフォルダのURL<br />
$this-&gt;ePub_author　→　ePubの作者<br />
$this-&gt;ePub_publisher　→　ePubの出版者<br />
$this-&gt;ePub_language　→　ePubで使用している言語<br />
$this-&gt;ePub_anchor_template　→　ePubダウンロード用アンカータグのテンプレート
</div>
<p>32行のディレクトリは、デフォルトの「get_option(&#8216;upload_path&#8217;) . &#8220;/epub&#8221;;」から変更する必要はありません。33行のURLは32行のディレクトリと等価ですが、「メディア」の設定で「アップロードするファイルの保存場所」を変更している場合、デフォルトの「get_option(&#8216;siteurl&#8217;) . &#8216;/wp-content/uploads/epub/&#8217;;」では正しく動作しません。設定に応じて適宜修正して下さい。</p>
<p>アンカータグのテンプレートは、初期状態では<br />
&lt;div class=&#8221;epub&#8221;&gt;&lt;a href=&#8221;%s&#8221; target=&#8221;_blank&#8221;&gt;Download ePub&lt;/a&gt;&lt;/div&gt;<br />
となっています。「href=&#8221;%s&#8221;」以外の部分は変更可能ですので、お好きなように編集して下さい。</p>
<h2>設置例</h2>
<p>当サイトでは、使用しているテーマのsingle.phpを編集し、</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;h1&gt;&lt; ?php the_title(); ?&gt;&lt;/h1&gt;</pre></div></div>

<p>となっていたところを、</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;h1&gt;&lt; ?php the_title(); ?&gt;&lt; ?php if(isset($ePub)) $ePub-&gt;ePublisher(); ?&gt;&lt;/h1&gt;</pre></div></div>

<p>とし、ダウンロード用のリンクを挿入しています。リンクは</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;epub&quot;&gt;&lt;a href=&quot;hogehoge.epub&quot; target=&quot;_blank&quot;&gt;Download ePub&lt;/a&gt;&lt;/div&gt;</pre></div></div>

<p>の形式で挿入されるため、テーマのcssには次のクラスを追加しています。</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.epub</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">&quot;../images/epub.png&quot;</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-repeat</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #933;">15px</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span><span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">11px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p><s>各エントリのタイトルの横にePubをダウンロードするためのリンクが本のアイコンとともに表示されていると思います。その見栄えを定義しているのが上のePubクラスです。</s><sup>[1]</sup></p>
<p>次にフォントについてですが、日本語のフォントとして<a href="http://www.geocities.jp/ipa_mona/" target="_blank">IPAモナーP明朝</a>（ipamp-mona.ttf）、中国語のフォントとして<a href="http://www.arphic.com/jp/home.html" target="_blank">文鼎（Arphic）の簡体字宋体フォント</a>（gbsn00lp.ttf）をプラグインのフォルダの plugins/download-epub/skeleton/OEBPS/fonts に加えています。</p>
<p>このフォントを使うため、plugins/download-epub/skeleton/OEBPS/style.css には次のような定義を加えています。</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #a1a100;">@font-face {</span>
  <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;ipampmona&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><span style="color: #00AA00;">;</span>
  src<span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">fonts/ipamp-mona.ttf</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #a1a100;">@font-face {</span>
  <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;AR PL SungtiL GB&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><span style="color: #00AA00;">;</span>
  src<span style="color: #00AA00;">:</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">fonts/gbsn00lp.ttf</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
body <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;ipampmona&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3%</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
p <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">150%</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;ipampmona&quot;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">text-indent</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1em</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.cn</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">font-family</span> <span style="color: #00AA00;">:</span><span style="color: #ff0000;">&quot;AR PL SungtiL GB&quot;</span><span style="color: #00AA00;">,</span> SimSun<span style="color: #00AA00;">,</span> STSong<span style="color: #00AA00;">,</span> STKaiti<span style="color: #00AA00;">,</span> <span style="color: #993333;">serif</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<h2>このプラグインの仕様および注意事項</h2>
<p>このプラグインは、ページが表示される際にそのエントリに対応するePubファイルが存在するか否かをまずチェックします。もしまだ作成されていなければ、タイトルや本文を取り出してePubに変換し、wp-content/uploads/epub のフォルダに保存します。その後、ブログ内の指定された位置にアンカータグを挿入します。</p>
<p>Download ePubタグの挿入場所はsingle.phpをおすすめします。ePubファイルを作成する処理は、それほど重いものではありませんが、作成する数が多いとそれなりに時間がかかるため、index.phpなどに設置すると表示されるエントリの数だけePub作成処理が実行されます。作成処理が実行されるのはePubが存在しない1回目だけですがご注意下さい。</p>
<p>ePubのファイル名は、エントリのID＋更新日時のタイムスタンプで構成されています。このことから予想がつくと思いますが、エントリの更新を行うと、ePubファイルもあらためて作成されますので、細かい修正を繰り返すとePubの保存フォルに同じようなファイルがたくさんできます。</p>
<p>バージョン0.1現在、圧縮まわりに不具合が残っています。今後修正する予定ですが使用する際はご注意下さい。</p>
<ol class="footnotes"><li id="footnote_0_1862" class="footnote">現在プラグイン停止中です。</li></ol>]]></content:encoded>
			<wfw:commentRss>http://www.karak.jp/epub/wordpress-download-epub.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WP &#8211; FC2拍手の設置</title>
		<link>http://www.karak.jp/blog/wp-fc2%e6%8b%8d%e6%89%8b%e3%81%ae%e8%a8%ad%e7%bd%ae.html</link>
		<comments>http://www.karak.jp/blog/wp-fc2%e6%8b%8d%e6%89%8b%e3%81%ae%e8%a8%ad%e7%bd%ae.html#comments</comments>
		<pubDate>Mon, 14 Dec 2009 00:49:20 +0000</pubDate>
		<dc:creator>ctrans</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[FC2]]></category>
		<category><![CDATA[拍手]]></category>

		<guid isPermaLink="false">http://www.karak.jp/?p=768</guid>
		<description><![CDATA[FC2拍手の導入に苦戦したのでメモ。 FC2拍手は、以下のタグをWordpressの個別エントリのページの下にでも放り込めば使える。 1 2 3 &#60;a href=&#34;http://clap.fc2.com/ [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clap.fc2.com/" target="_blank">FC2拍手</a>の導入に苦戦したのでメモ。</p>
<p>FC2拍手は、以下のタグをWordpressの個別エントリのページの下にでも放り込めば使える。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;a href=&quot;http://clap.fc2.com/post/XXX(ユーザ名)/?url=XXX(URL)&amp;title=XXX(Title)&quot; target=&quot;_blank&quot; title=&quot;拍手する by FC2&quot;&gt;
&lt;img src=&quot;http://clap.fc2.com/images/button/white/XXX(ユーザ名)?url=XXX(URL)&quot; alt=&quot;拍手する&quot; style=&quot;border:none;&quot; /&gt;
&lt;/a&gt;</pre></td></tr></table></div>

<p>ユーザ名にはFC2拍手の登録IDを入れ、あとはパーマリンクとエントリのタイトルを補えば良いのだが、ここではまった。結論からいうとパーマリンクはget_permalink、タイトルはthe_titleで取得し、どちらもurlencodeしたら動いた。タイトルはmb_convert_encodingをかまさないとダメみたいだった。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;a href=&quot;http://clap.fc2.com/post/ctrans/?url=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span>get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;title=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">mb_convert_encoding</span><span style="color: #009900;">&#40;</span>the_title<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;UTF-8&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; target=&quot;_blank&quot; title=&quot;web拍手&quot;&gt;
&lt;img src=&quot;http://clap.fc2.com/images/button/white/ctrans?url=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span>get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; alt=&quot;web拍手&quot; style=&quot;border:none;vertical-align:middle;&quot; /&gt;
&lt;/a&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.karak.jp/blog/wp-fc2%e6%8b%8d%e6%89%8b%e3%81%ae%e8%a8%ad%e7%bd%ae.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WP &#8211; archive.php の編集</title>
		<link>http://www.karak.jp/blog/wp-archive-php-%e3%81%ae%e7%b7%a8%e9%9b%86.html</link>
		<comments>http://www.karak.jp/blog/wp-archive-php-%e3%81%ae%e7%b7%a8%e9%9b%86.html#comments</comments>
		<pubDate>Sat, 21 Nov 2009 11:18:34 +0000</pubDate>
		<dc:creator>ctrans</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.karak.jp/?p=549</guid>
		<description><![CDATA[このサイトで今使っているTitanというテーマはかなり気に入っているのだが、カテゴリー別のページに見出ししか表示されないのが不満だった。Wordpressは中身をちゃんと理解していないのでカスタマイズできないまま放置→今 [...]]]></description>
			<content:encoded><![CDATA[<p>このサイトで今使っているTitanというテーマはかなり気に入っているのだが、カテゴリー別のページに見出ししか表示されないのが不満だった。Wordpressは中身をちゃんと理解していないのでカスタマイズできないまま放置→今日に至っていたが、夕方息子が寝てるすきにphpのファイルをだーっと眺めたら、なんとなく分かったような気がしたのでindex.phpの構造をそのままarchive.phpにコピペして作業完了。とりあえず動いているようなのでよしとする。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karak.jp/blog/wp-archive-php-%e3%81%ae%e7%b7%a8%e9%9b%86.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP &#8211; Simple Tweet 導入</title>
		<link>http://www.karak.jp/blog/wp-simple-tweet%e5%b0%8e%e5%85%a5.html</link>
		<comments>http://www.karak.jp/blog/wp-simple-tweet%e5%b0%8e%e5%85%a5.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 03:15:01 +0000</pubDate>
		<dc:creator>ctrans</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://www.karak.jp/?p=518</guid>
		<description><![CDATA[WordPressで投稿すると自動的にtwitterで紹介できるようにしたかったのでSimple Tweetというプラグインを導入しました。ほかにもいくつかtwitter関連のプラグインはあるようですが、シンプルで導入も [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="twitter" src="http://a0.twimg.com/a/1258056589/images/twitter_logo_header.png" title="twitter" class="aligncenter" width="155" height="36" /><br />
WordPressで投稿すると自動的にtwitterで紹介できるようにしたかったので<a href="http://wppluginsj.sourceforge.jp/simple-tweet/" target="_blank">Simple Tweet</a>というプラグインを導入しました。ほかにもいくつかtwitter関連のプラグインはあるようですが、シンプルで導入も簡単そうなこちらのプラグインを選択。さてさて。</p>
<p>関連：<a href="http://wordpress.org/extend/plugins/simple-tweet/" target="_blank">WordPress › Simple Tweet « WordPress Plugins</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karak.jp/blog/wp-simple-tweet%e5%b0%8e%e5%85%a5.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 導入したプラグイン</title>
		<link>http://www.karak.jp/blog/%e5%b0%8e%e5%85%a5%e3%81%97%e3%81%9f%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3.html</link>
		<comments>http://www.karak.jp/blog/%e5%b0%8e%e5%85%a5%e3%81%97%e3%81%9f%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3.html#comments</comments>
		<pubDate>Thu, 10 Sep 2009 04:50:41 +0000</pubDate>
		<dc:creator>ctrans</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.karak.jp/?p=289</guid>
		<description><![CDATA[今ところ6つのプラグインを使用しています。 Akismetスパム対策 Advanced Category Excluder特定のカテゴリを非表示にするためのプラグイン Google (XML) Sitemaps Gene [...]]]></description>
			<content:encoded><![CDATA[<p>今ところ6つのプラグインを使用しています。</p>
<ul>
<li><a href="http://akismet.com/" target="_blank">Akismet</a><br />スパム対策</li>
<li><a href="http://ace.dev.rain.hu/" target="_blank">Advanced Category Excluder</a><br />特定のカテゴリを非表示にするためのプラグイン</li>
<li><a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" target="_blank">Google (XML) Sitemaps Generator for WordPress</a></li>
<li><a href="http://mnm.uib.es/gallir/wp-cache-2/" target="_blank">wp-cache</a><br />サイトがサクサク表示されるように。</li>
<li><a href="http://wordpress.org/extend/plugins/wp-syntax/" target="_blank">WP-Syntax</a><br />Syntax Highlightのために導入。Tclにも対応していて感動。</li>
<li> <a href="http://eastcoder.com/code/wp-multibyte-patch" target="_blank">WP Multibyte Patch</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.karak.jp/blog/%e5%b0%8e%e5%85%a5%e3%81%97%e3%81%9f%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>特定カテゴリの非表示</title>
		<link>http://www.karak.jp/blog/%e7%89%b9%e5%ae%9a%e3%82%ab%e3%83%86%e3%82%b4%e3%83%aa%e3%81%ae%e9%9d%9e%e8%a1%a8%e7%a4%ba.html</link>
		<comments>http://www.karak.jp/blog/%e7%89%b9%e5%ae%9a%e3%82%ab%e3%83%86%e3%82%b4%e3%83%aa%e3%81%ae%e9%9d%9e%e8%a1%a8%e7%a4%ba.html#comments</comments>
		<pubDate>Fri, 04 Sep 2009 07:15:24 +0000</pubDate>
		<dc:creator>ctrans</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.karak.jp/?p=256</guid>
		<description><![CDATA[メモ書きや日記のようなエントリまでトップページに表示されると美しくないのでどうにかしたかったのですが、アーカイブページで特定カテゴリーを非表示にする « eight and halfを参考にindex.phpを編集したら [...]]]></description>
			<content:encoded><![CDATA[<p>メモ書きや日記のようなエントリまでトップページに表示されると美しくないのでどうにかしたかったのですが、<a href="http://sayama.wordpress.com/2007/01/24/%e3%82%a2%e3%83%bc%e3%82%ab%e3%82%a4%e3%83%96%e3%83%9a%e3%83%bc%e3%82%b8%e3%81%a7%e7%89%b9%e5%ae%9a%e3%82%ab%e3%83%86%e3%82%b4%e3%83%aa%e3%83%bc%e3%82%92%e9%9d%9e%e8%a1%a8%e7%a4%ba%e3%81%ab%e3%81%99/" target="_blank">アーカイブページで特定カテゴリーを非表示にする « eight and half</a>を参考にindex.phpを編集したら期待通りの状態を実現することができました。これで表示したくないカテゴリのエントリは隠すことができます（画面右の「Recent Articles」には表示されるので閲覧自体は問題なし）。感謝。</p>
<p>追記：この手法で特定カテゴリ非表示にすると、最大表示数を10件に設定している場合に最新エントリ10件が非表示カテゴリだと、トップページに何も表示されなくなってしまいます。何らかの回避策が必要ですね（09/09/10）。</p>
<p>結論：<a href="http://wordpress.org/extend/plugins/advanced-category-excluder/" target="_blank">Advanced Category Excluder</a>を導入しました。とても便利です。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karak.jp/blog/%e7%89%b9%e5%ae%9a%e3%82%ab%e3%83%86%e3%82%b4%e3%83%aa%e3%81%ae%e9%9d%9e%e8%a1%a8%e7%a4%ba.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

