<?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>at PC-Life classic &#187; WordPress</title>
	<atom:link href="http://www.moriy.com/archives/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.moriy.com</link>
	<description>DR-DOS7.05 moriy版の無償公開</description>
	<lastBuildDate>Thu, 03 Feb 2011 05:07:13 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.moriy.com/archives/category/wordpress/feed" />
		<item>
		<title>SimpleTagsがWarning</title>
		<link>http://www.moriy.com/archives/758</link>
		<comments>http://www.moriy.com/archives/758#comments</comments>
		<pubDate>Tue, 16 Mar 2010 15:12:47 +0000</pubDate>
		<dc:creator>moriy</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.moriy.com/archives/758</guid>
		<description><![CDATA[WordPress 2.9.2 とSimpleTags1.7.4.4の組み合わせで使用していると、「Warning: array_keys() [function.array-keys]」が表示されます。 簡単に解決でき...]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.9.2 とSimpleTags1.7.4.4の組み合わせで使用していると、「<em>Warning</em>: <em>array_keys</em>() [function.array-keys]」が表示されます。<br />
簡単に解決できるのでしょうか？<br />
とりあえず、今はプラグインを無効にしておきました。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moriy.com/archives/758/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.moriy.com/archives/758" />
	</item>
		<item>
		<title>ウィジェット内でPHPを実行</title>
		<link>http://www.moriy.com/archives/748</link>
		<comments>http://www.moriy.com/archives/748#comments</comments>
		<pubDate>Tue, 02 Mar 2010 09:31:06 +0000</pubDate>
		<dc:creator>moriy</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[サイト更新情報]]></category>

		<guid isPermaLink="false">http://www.moriy.com/?p=748</guid>
		<description><![CDATA[WordPressではサイドバーにウィジェットが利用できて便利なのですが、そのままではPHPが実行できません。 PHP Code Widget プラグインは、PHPコードを記述出来るウィジェットを実装します。 このサイト...]]></description>
			<content:encoded><![CDATA[<p>WordPressではサイドバーにウィジェットが利用できて便利なのですが、そのままではPHPが実行できません。<br />
<a href="http://wordpress.org/extend/plugins/php-code-widget/" target="_blank">PHP Code Widget</a> プラグインは、PHPコードを記述出来るウィジェットを実装します。<br />
このサイトでも、試しに年月アーカイブをプルダウン形式に変更してみました。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">&lt;ul&gt;&lt;li id=&quot;archives-2&quot; class=&quot;widget widget_archive&quot;&gt;
&lt;select name=&quot;archive-dropdown&quot; onChange='document.location.href=this.options[this.selectedIndex].value;'&gt; 
&lt;option value=&quot;&quot;&gt;&lt;?php echo attribute_escape(__('年月を選択')); ?&gt;&lt;/option&gt; 
&lt;?php wp_get_archives('type=monthly&amp;limit=5&amp;format=option&amp;show_post_count=1'); ?&gt;
&lt;/select&gt;
&lt;/li&gt;&lt;/ul&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.moriy.com/archives/748/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.moriy.com/archives/748" />
	</item>
		<item>
		<title>runPHPプラグイン</title>
		<link>http://www.moriy.com/archives/747</link>
		<comments>http://www.moriy.com/archives/747#comments</comments>
		<pubDate>Mon, 01 Mar 2010 14:07:17 +0000</pubDate>
		<dc:creator>moriy</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.moriy.com/?p=747</guid>
		<description><![CDATA[WordPressの記事内でjavascriptを使用したい時、runPHPプラグインを有効にして、HTMLモードで記述できれば可能です。 使用例は、こちらの記事 をごらんください。 デュエルマスターズのブログパーツja...]]></description>
			<content:encoded><![CDATA[<p>WordPressの記事内でjavascriptを使用したい時、<a href="http://www.nosq.com/blog/2006/01/runphp-plugin-for-wordpress/"　target="_blank">runPHPプラグイン</a>を有効にして、HTMLモードで記述できれば可能です。<br />
使用例は、<a href="http://www.moriy.com/archives/744" target="_self">こちらの記事</a> をごらんください。 デュエルマスターズのブログパーツjavascriptを記事内に埋め込んでいます。</p>
<p>ソースは下のとおり。ビジュアルエディタに切り替えると文字が変換されてしまいます。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">&lt;?php
echo &lt;&lt;&lt;EOF
&lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;http://blogparts.takaratomy.co.jp/duelmasters/blogparts.php?blogcode=9d9b6ca30d2140a5af7df47a4b779d76&quot;&gt;&lt;/script&gt;
EOF;
?&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.moriy.com/archives/747/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.moriy.com/archives/747" />
	</item>
		<item>
		<title>cronを無料で利用</title>
		<link>http://www.moriy.com/archives/742</link>
		<comments>http://www.moriy.com/archives/742#comments</comments>
		<pubDate>Sat, 27 Feb 2010 05:24:48 +0000</pubDate>
		<dc:creator>moriy</dc:creator>
				<category><![CDATA[PC一般]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.moriy.com/archives/742</guid>
		<description><![CDATA[うちで借りているサーバでは、CRON(コマンドスケジューラ)が使用できないので、それに代わるサービスは無いかと探していたところ、ドイツの方が提供している Cron-job.org を見つけました。2010年2月現在、無料...]]></description>
			<content:encoded><![CDATA[<p><a title="cron-job" href="http://www.moriy.com/wp-content/uploads/cron-job.jpg"><img src="http://www.moriy.com/wp-content/uploads/cron-job-150x150.jpg" title="cron-job" width="150" height="150" class="alignleft size-thumbnail wp-image-741" /></a>うちで借りているサーバでは、CRON(コマンドスケジューラ)が使用できないので、それに代わるサービスは無いかと探していたところ、ドイツの方が提供している <a rel="nofollow" href="http://www.cron-job.org/">Cron-job.org</a> を見つけました。2010年2月現在、無料で特定の URL に定期的にアクセスしてくれるサービスです。</p>
<p>ドイツ語のサイトなので、登録に少し戸惑ったものの、設定項目は少なかったので、比較的簡単でした。ただし、ドイツと日本の時差を考慮(日本時間-８時間)することに注意。</p>
<p>設定方法は、<a href="http://drupal.jp/guide/cron_task_cron-job_org" target="_blank">cron タスクの設定 【 Cron-job.org の利用】</a> を参考にさせていただきました。ありがとうございます。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moriy.com/archives/742/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.moriy.com/archives/742" />
	</item>
		<item>
		<title>twicliが軽くて便利</title>
		<link>http://www.moriy.com/archives/729</link>
		<comments>http://www.moriy.com/archives/729#comments</comments>
		<pubDate>Wed, 10 Feb 2010 15:27:35 +0000</pubDate>
		<dc:creator>moriy</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[つぶやき]]></category>

		<guid isPermaLink="false">http://www.moriy.com/archives/729</guid>
		<description><![CDATA[Webブラウザ・ベースのTwitter用クライアントです。タイムラインを随時表示していきます。とにかく軽いのでストレスありません。 サイトはこちら]]></description>
			<content:encoded><![CDATA[<p><a title="twicli" href="http://www.moriy.com/wp-content/uploads/twicli.jpg"><img src="http://www.moriy.com/wp-content/uploads/twicli.jpg" title="twicli" width="163" height="369" class="alignleft size-full wp-image-728" /></a>Webブラウザ・ベースのTwitter用クライアントです。タイムラインを随時表示していきます。とにかく軽いのでストレスありません。</p>
<p>サイトは<a href="http://www.geocities.jp/twicli/" target="_blank">こちら</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.moriy.com/archives/729/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.moriy.com/archives/729" />
	</item>
		<item>
		<title>Tweetableの調整</title>
		<link>http://www.moriy.com/archives/727</link>
		<comments>http://www.moriy.com/archives/727#comments</comments>
		<pubDate>Mon, 08 Feb 2010 14:15:28 +0000</pubDate>
		<dc:creator>moriy</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.moriy.com/archives/727</guid>
		<description><![CDATA[WordPressのプラグインである、Tweetableの動作テストです。うまくつぶやけているのかなあ。]]></description>
			<content:encoded><![CDATA[<p>WordPressのプラグインである、Tweetableの動作テストです。うまくつぶやけているのかなあ。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moriy.com/archives/727/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.moriy.com/archives/727" />
	</item>
		<item>
		<title>Tweetableの時間表示修正</title>
		<link>http://www.moriy.com/archives/713</link>
		<comments>http://www.moriy.com/archives/713#comments</comments>
		<pubDate>Sat, 06 Feb 2010 12:13:37 +0000</pubDate>
		<dc:creator>moriy</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.moriy.com/?p=713</guid>
		<description><![CDATA[WordPressのTwitterプラグイン「Tweetable」を使用して、右サイドバー下側に自分のtweet(つぶやき)を表示させてるんですけど、投稿時刻が9時間前になってしまっています。どうやら、プラグイン内で日本...]]></description>
			<content:encoded><![CDATA[<p>WordPressのTwitterプラグイン「Tweetable」を使用して、右サイドバー下側に自分のtweet(つぶやき)を表示させてるんですけど、投稿時刻が9時間前になってしまっています。どうやら、プラグイン内で日本のタイムゾーン処理が行われていないみたいです。下のリストのとおり、<strong>tweetable.php</strong>にdate_default_timezone_set(&#8216;Asia/Tokyo&#8217;); を追加したら正しく表示されました。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moriy.com/archives/713/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.moriy.com/archives/713" />
	</item>
		<item>
		<title>gooにpingを弾かれる</title>
		<link>http://www.moriy.com/archives/709</link>
		<comments>http://www.moriy.com/archives/709#comments</comments>
		<pubDate>Sat, 06 Feb 2010 01:51:17 +0000</pubDate>
		<dc:creator>moriy</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.moriy.com/?p=709</guid>
		<description><![CDATA[このサイトでブログ記事を新規投稿するときに、なんか時間がかかっているなあと思ったら、gooのpingサーバから拒否されていました。(泣) ぐぐってみる(Googleで検索してみる)と、くわぶろさんのブログでその原因と対策...]]></description>
			<content:encoded><![CDATA[<p>このサイトでブログ記事を新規投稿するときに、なんか時間がかかっているなあと思ったら、gooのpingサーバから拒否されていました。(泣)</p>
<p>ぐぐってみる(Googleで検索してみる)と、<a href="http://www.ksa-japan.com/kuwata/blog/post/348/" target="_blank">くわぶろさん</a>のブログでその原因と対策方法について記載されていましたので、さっそくお世話になりました。 感謝！</p>
<blockquote><p>ユーザーエージェントに『WordPress』という文字列があるかないか、、、<br />
もしあれば拒否（403 Forbidden）されてしまうのです（検証済み）。</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.moriy.com/archives/709/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.moriy.com/archives/709" />
	</item>
		<item>
		<title>ソースコード表示プラグイン</title>
		<link>http://www.moriy.com/archives/684</link>
		<comments>http://www.moriy.com/archives/684#comments</comments>
		<pubDate>Sat, 16 May 2009 13:31:01 +0000</pubDate>
		<dc:creator>moriy</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[サイト更新情報]]></category>
		<category><![CDATA[DR-DOS]]></category>

		<guid isPermaLink="false">http://www.moriy.com/?p=684</guid>
		<description><![CDATA[　そういえば、DR-DOSのシステム設定ファイルのソース(config.sysやautoexec.batなど)を記事としてアップできていないことに気づきました。いまさらですが・・・ 　そこで、WordPressでソースを...]]></description>
			<content:encoded><![CDATA[<p>　そういえば、DR-DOSのシステム設定ファイルのソース(config.sysやautoexec.batなど)を記事としてアップできていないことに気づきました。いまさらですが・・・<br />
　そこで、WordPressでソースを表示するのに便利なプラグインがないか探してみたら、<a href="http://wordpress.org/extend/plugins/" target="_blank">WordPress.orgのプラグインディレクトリ</a>で配布されている<a href="http://wordpress.org/extend/plugins/wp-syntax/" target="_blank">WP-Syntax</a>を使ってみることにしました。</p>
<p>ためしに、ここで配布しているDR-DOS7.05.70cに収録しているMYNET.CFGのソースをアップしてみます。シンプルなので、いい感じです。</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">;MYIP=DHCP                 ; IP address or DHCP
MYIP=192.168.0.31
NETMASK=255.255.255.0      ; Subnet mask
REMIP=192.168.0.1          ; Default gateway
DNS1=192.168.0.1           ; Primary name server
DNS2=                      ; Secondary name server
;
PCNAME=DRDOSPC
USER=DOSUSER
WORKGROUP=MYGROUP
DOMAIN=MYDOMAIN
;
NETCARD=AUTO
;NETCARD=NONE
;NETCARD=DC21X4             ; Used in VirtualPC.
;NETCARD=PCNTND             ; Used in VMWare.
;NETCARD=NE2000             ; Eagle Technology NE2000plus</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.moriy.com/archives/684/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.moriy.com/archives/684" />
	</item>
		<item>
		<title>ヘッダにイメージ表示</title>
		<link>http://www.moriy.com/archives/683</link>
		<comments>http://www.moriy.com/archives/683#comments</comments>
		<pubDate>Sat, 16 May 2009 11:05:53 +0000</pubDate>
		<dc:creator>moriy</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[サイト更新情報]]></category>

		<guid isPermaLink="false">http://www.moriy.com/?p=683</guid>
		<description><![CDATA[　このサイトのページテンプレートは、WordPressテーマディレクトリで見つけたシンプルなテーマ「Blocks」をカスタマイズして使用しています。少しずつ手を加えているのですが、今回はヘッダにイメージを表示するようにし...]]></description>
			<content:encoded><![CDATA[<p>　このサイトのページテンプレートは、<a title="WordPressテーマディレクトリ" href="http://wordpress.org/extend/themes/" target="_blank">WordPressテーマディレクトリ</a>で見つけたシンプルなテーマ「<a title="Blocks" href="http://wordpress.org/extend/themes/blocks" target="_blank">Blocks</a>」をカスタマイズして使用しています。少しずつ手を加えているのですが、今回はヘッダにイメージを表示するようにしてみました。</p>
<p>変更内容は以下のとおりです。<br />
(1)サーバのthemes/blocks/以下にimgディレクトリを作成し、header.jpgをアップロード<br />
(2)wp-content/themes/blocks/style.css を修正</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="text" style="font-family:monospace;">#header .content {
background:#FFF;
width:100%;
height:100%;
background:url(img/header.gif) 99% 50% no-repeat;
}</pre></td></tr></table></div>

<p>上記5行目が追加した行です。<br />
※backgroundプロパティ＝背景色 背景画像 左位置 上位置 繰り返し表示</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moriy.com/archives/683/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://www.moriy.com/archives/683" />
	</item>
	</channel>
</rss>

