<?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>イテルの一日一問 &#187; プラグイン</title>
	<atom:link href="http://oneday.ter.jp/tag/%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3/feed" rel="self" type="application/rss+xml" />
	<link>http://oneday.ter.jp</link>
	<description>一日にひとつは何かを考える。</description>
	<lastBuildDate>Mon, 31 Jan 2011 09:23:33 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://oneday.ter.jp/tag/%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3/feed" />
		<item>
		<title>simple tagsめ！wordpress2.9のアップデートでまたまた動かない</title>
		<link>http://oneday.ter.jp/wordpress/990.html</link>
		<comments>http://oneday.ter.jp/wordpress/990.html#comments</comments>
		<pubDate>Fri, 05 Feb 2010 04:21:09 +0000</pubDate>
		<dc:creator>イテル</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[バグ]]></category>
		<category><![CDATA[プラグイン]]></category>

		<guid isPermaLink="false">http://oneday.ter.jp/?p=990</guid>
		<description><![CDATA[wp2.9にアップデートした際にも発生したのですが、 また懲りずに不具合が発生したのでメモ。 前回はwpを2.9にアップデートしたことにより、プログラム中のバージョンチェックで 2.9が認識できないという不具合でした。  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://oneday.ter.jp/wp-content/uploads/2010/02/00_wordpress1.jpg" rel="shadowbox[sbpost-990];player=img;"><img src="http://oneday.ter.jp/wp-content/uploads/2010/02/00_wordpress1-700x200.jpg" alt="またまたsimple tagsめ！wordpress2.9のアップデートでまたまた動かない" title="またまたsimple tagsめ！wordpress2.9のアップデートでまたまた動かない" width="700" height="200" class="alignnone size-thumbnail wp-image-992" /></a></p>
<p>wp2.9にアップデートした際にも発生したのですが、<br />
また懲りずに不具合が発生したのでメモ。</p>
<p>前回はwpを2.9にアップデートしたことにより、プログラム中のバージョンチェックで<br />
2.9が認識できないという不具合でした。<br />
この場合は、2.9のチェックを入れてあげればokでした。</p>
<p>どちらかというと、「wp」をバージョンアップしたことによって引き起こされた不具合なので<br />
誰が悪いということもなかったのですが、今回は「simple tags」のアップデートを<br />
すると動作しなくなるという不具合。。。</p>
<p>まともやgoogle先生に聞いてみるとすぐに発見。<br />
※いつものことながら、問題を1週間ほど寝かせた後ですがｗ</p>
<p>参考：<a href="http://kazuizm.com/2010/01/29-141520.php">Simple Tagsのエラー解決策（Kazuizmさん）</a><br />
※本当に助かりました！</p>
<p>「inc/base.php」の46行目を修正すればokとのことです。</p>
<h4>元のコード</h4>
<pre class="brush: php; title: ; notranslate">
	/**
	 * Add initial ST options in DB
	 *
	 */
	function installSimpleTags() {
		$options_from_table = get_option( STAGS_OPTIONS_NAME );
		if ( $options_from_table == false ) {
			$this-&gt;resetToDefaultOptions();
		}
	}
</pre>
<h4>修正したコード</h4>
<pre class="brush: php; title: ; notranslate">
	/**
	 * Add initial ST options in DB
	 *
	 */
	function installSimpleTags() {
		$options_from_table = get_option( STAGS_OPTIONS_NAME );
		if ( $options_from_table == false ) {
			$this-&gt;options = $this-&gt;resetToDefaultOptions();
		}
	}
</pre>
<p>※「$this->options =」が抜けているようです。。。凡ミスですねｗ</p>
<p>ステキなプラグインだけに、リリース前チェックはして欲しいところですｗ</p>
]]></content:encoded>
			<wfw:commentRss>http://oneday.ter.jp/wordpress/990.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://oneday.ter.jp/wordpress/990.html" />
	</item>
		<item>
		<title>記事をテンプレート化する「Post Template」</title>
		<link>http://oneday.ter.jp/wordpress/783.html</link>
		<comments>http://oneday.ter.jp/wordpress/783.html#comments</comments>
		<pubDate>Sun, 30 Aug 2009 01:12:10 +0000</pubDate>
		<dc:creator>イテル</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Post Template]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[テンプレート]]></category>
		<category><![CDATA[プラグイン]]></category>

		<guid isPermaLink="false">http://oneday.ter.jp/?p=783</guid>
		<description><![CDATA[一日一問が崩れつつある。 10日分くらい溜まった。（現在9月6日・・・） 気を取り直して今日？は「Post Template」。 記事を定型化しておきたい場合に利用する。 プラグイン→新規追加をクリックする。 「Post [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://oneday.ter.jp/wp-content/uploads/2009/08/00_wordpress1-700x200.jpg" alt="00_wordpress" title="00_wordpress" width="700" height="200" class="alignnone size-thumbnail wp-image-843" /></p>
<p>一日一問が崩れつつある。<br />
10日分くらい溜まった。（現在9月6日・・・）<br />
気を取り直して今日？は「Post Template」。<br />
記事を定型化しておきたい場合に利用する。</p>
<ol>
<li>プラグイン→新規追加をクリックする。</li>
<li> 「Post Templates」と入力してインストールリンクをクリック。</li>
<li>ウィンドウ内の「インストール」ボタンをクリックして「プラグインを有効化」リンクをクリック。</li>
</ol>
<p>記事一覧に「テンプレート化」というリンクが表示されるので、<br />
テンプレートにした記事でリンクをクリックするとテンプレート化できる。</p>
<p>また、管理メニューにもテンプレートを管理するメニューが表示されるため、<br />
こちらで編集や登録することが可能。</p>
]]></content:encoded>
			<wfw:commentRss>http://oneday.ter.jp/wordpress/783.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://oneday.ter.jp/wordpress/783.html" />
	</item>
		<item>
		<title>WPに評価機能を追加する「PostRatings」</title>
		<link>http://oneday.ter.jp/wordpress/781.html</link>
		<comments>http://oneday.ter.jp/wordpress/781.html#comments</comments>
		<pubDate>Sat, 29 Aug 2009 01:11:01 +0000</pubDate>
		<dc:creator>イテル</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[PostRatings]]></category>
		<category><![CDATA[WP]]></category>
		<category><![CDATA[プラグイン]]></category>
		<category><![CDATA[記事]]></category>
		<category><![CDATA[評価]]></category>

		<guid isPermaLink="false">http://oneday.ter.jp/?p=781</guid>
		<description><![CDATA[記事に評価機能が欲しい際に使いたいのが「PostRatings」。 私が使いたい機能は記事ではなく掲載された内容に対しての 評価だったのだが、とりあえずこれを使用することにした。 インストール プラグイン→新規追加をクリ [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://oneday.ter.jp/wp-content/uploads/2009/08/00_wordpress2-700x200.jpg" alt="00_wordpress" title="00_wordpress" width="700" height="200" class="alignnone size-thumbnail wp-image-845" /></p>
<p>記事に評価機能が欲しい際に使いたいのが「PostRatings」。<br />
私が使いたい機能は記事ではなく掲載された内容に対しての<br />
評価だったのだが、とりあえずこれを使用することにした。</p>
<h3>インストール</h3>
<ol>
<li>プラグイン→新規追加をクリックする。</li>
<li>「PostRatings」と入力してインストールリンクをクリック。</li>
<li>ウィンドウ内の「インストール」ボタンをクリックして「プラグインを有効化」リンクをクリック。</li>
</ol>
<p>そういえば、2.7からインストールが簡単になったので、ちょっと<br />
割愛したいところだが、とりあえず書いておく。</p>
<p>評価を表示したい場所（single）に下記の構文を書く。</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php if(function_exists('the_ratings')) { the_ratings(); } ?&gt;
</pre>
<p>また設定で★マークなどの種類が選択できる。</p>
]]></content:encoded>
			<wfw:commentRss>http://oneday.ter.jp/wordpress/781.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://oneday.ter.jp/wordpress/781.html" />
	</item>
		<item>
		<title>カスタムフィールドを便利にする（プラグイン）</title>
		<link>http://oneday.ter.jp/wordpress/752.html</link>
		<comments>http://oneday.ter.jp/wordpress/752.html#comments</comments>
		<pubDate>Sun, 23 Aug 2009 05:27:36 +0000</pubDate>
		<dc:creator>イテル</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Custom Field GUI Utility]]></category>
		<category><![CDATA[カスタムフィールド]]></category>
		<category><![CDATA[プラグイン]]></category>

		<guid isPermaLink="false">http://oneday.ter.jp/?p=752</guid>
		<description><![CDATA[wordpressの標準機能だけでは、やりたいことに制限が出てしまう。 そこで、「カスタムフィールド」を使うことになるのだが、 標準のカスタムフィールドはそれほど使いやすいものとは言いがたい。 そこで使いたいのが「Cus [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-thumbnail wp-image-766" title="090823" src="http://oneday.ter.jp/wp-content/uploads/2009/08/090823-700x200.jpg" alt="090823" width="700" height="200" /></p>
<p>wordpressの標準機能だけでは、やりたいことに制限が出てしまう。<br />
そこで、「カスタムフィールド」を使うことになるのだが、<br />
標準のカスタムフィールドはそれほど使いやすいものとは言いがたい。</p>
<p>そこで使いたいのが「Custom Field Gui Utility」。</p>
<h3>インストール</h3>
<ol>
<li>「<a href="http://www.tinybeans.net/blog/" target="_blank">かたつむりくん</a>」さんより最新版の「Custom Field Gui Utility」をダウンロード。</li>
<li>ファイルを解凍しFTPなどでプラグインフォルダにアップロードする。</li>
<li>wpのプラグインページにて「Custom Field Gui Utility」を有効にする。</li>
</ol>
<h3>設定方法</h3>
<p>管理ページのようなものがないので、フィールドの設定はコンフィグファイルの<br />
テキストを直接編集しなければならいようだ。<br />
ここはちょっと不便。</p>
<p>「rc-custom-field-gui-utility」フォルダ内の「conf-common.ini」<br />
「conf-page.ini」「conf-post.ini」を編集してカスタムフィールドの表示を変更できる。<br />
※パラメータなどは<a href="http://www.tinybeans.net/blog/download/wp-plugin/cfg-utility-100.html" target="_blank">作者さん</a>のwebを参照。</p>
<p>なお、ページ・記事共通の設定は「conf-common.ini」、ページ用は「conf-page.ini」、<br />
投稿用は「conf-post.ini」となっている。</p>
<h3>はまった箇所</h3>
<p>何度か、投稿ページで更新したのに更新されていないという不思議な現象が発生して動揺した。<br />
原因は、 「conf-common.ini」と「conf-post.ini」内の設定がまったく同じだったために発生したようだ。<br />
この二つが有効だと、投稿の編集画面でcommon用のカスタムフィールドとpost用のカスタムフィールドの<br />
2つのカスタムフィールドが表示される。</p>
<p>気づかずに上のカスタムフィールドにデータを入力して「公開」をクリックしても、<br />
下にも全く同一のカスタムフィールドがしかも空白のまま表示されいているため、<br />
ページ下の空白のカスタムフィールドが送信されてしまうってこと。</p>
<p>なんか説明難しい・・・単純な問題でちょっとはまってしまったので、</p>
<p>「common」「page」「post」でいらんものはファイル名を変えれば表示されなくなる。</p>
<h3>不具合っぽい</h3>
<p>また、「google map anywhere」を入れたところ、カスタムフィールド内の<br />
画像ボタンの隣にgoogle mapsアイコンが追加されたのだが、<br />
どちらのボタンをクリックしても「google map anywhere」が表示されてしまい、<br />
挙動がおかしくなった。</p>
<p>バグかなぁ？</p>
]]></content:encoded>
			<wfw:commentRss>http://oneday.ter.jp/wordpress/752.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://oneday.ter.jp/wordpress/752.html" />
	</item>
		<item>
		<title>WordPressのプラグイン</title>
		<link>http://oneday.ter.jp/wordpress/9.html</link>
		<comments>http://oneday.ter.jp/wordpress/9.html#comments</comments>
		<pubDate>Thu, 04 Jun 2009 13:34:19 +0000</pubDate>
		<dc:creator>イテル</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[プラグイン]]></category>

		<guid isPermaLink="false">http://oneday.ter.jp/?p=9</guid>
		<description><![CDATA[さっそくWordpress（ワードプレス）を使用する際にボクがよく使うプラグインの覚え書き。 all-in-one-seo-pack SEO対策で使用。タイトルやMETAをいぢれる。 日本語版もあるが、英語版が頻繁にアッ [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-thumbnail wp-image-21" title="wp" src="http://oneday.ter.jp/wp-content/uploads/2009/06/wp-700x200.jpg" alt="wp" width="700" height="200" /></p>
<p>さっそくWordpress（ワードプレス）を使用する際にボクがよく使うプラグインの覚え書き。</p>
<ol>
<li><a href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/" target="_blank">all-in-one-seo-pack</a><br />
SEO対策で使用。タイトルやMETAをいぢれる。<br />
日本語版もあるが、英語版が頻繁にアップデートするのでアップデートすると英語版に戻るｗ</li>
<li><a href="http://wppluginsj.sourceforge.jp/googlemaps-anywhere/" target="_blank">googlemaps-anywhere</a><br />
GoogleMapsを記事に挿入できる。</li>
<li><a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" target="_blank">google-sitemap-generator</a><br />
Googleのサイトマップを作成してくれる。</li>
<li><a href="http://geekyweekly.com/mycategoryorder" target="_blank">my-category-order</a><br />
カテゴリを並び替えて表示できる。</li>
<li><a href="http://wp.somy.jp/spam-block-jp/" target="_blank">somy_spamblock_jp</a><br />
海外スパムをブロックしてくれる。</li>
<li><a href="http://wordpress.org/extend/plugins/syntaxhighlighter/" target="_blank">syntaxhighlighter</a><br />
プログラムのコードを表示できる。</li>
<li><a href="http://www.laptoptips.ca/projects/tinymce-advanced/" target="_blank">tinymce-advanced</a><br />
ウィジウィグエディタ。いるかいらんかは微妙。</li>
<li><a href="http://zeo.unic.net.my/notes/lightbox2-for-wordpress/" target="_blank">wp-lightbox</a><br />
ポップアップをjsでステキに表示してくれる。</li>
</ol>
<p>もっとたくさん良いツールもありますが、用途に応じて使用している。<br />
※他にお勧めのツールがありましたらコメントいただけると幸いです。</p>
]]></content:encoded>
			<wfw:commentRss>http://oneday.ter.jp/wordpress/9.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://oneday.ter.jp/wordpress/9.html" />
	</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.689 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-10 18:02:49 -->

