<?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>へっぽこ開発室 &#187; WordPress</title>
	<atom:link href="http://wp.foliz.net/archives/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://wp.foliz.net</link>
	<description>webプログラム　php,Smarty,Zend Framework,ajax,pearネタなど～</description>
	<lastBuildDate>Sat, 21 Jan 2012 06:32:52 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Thumbnail for Excerpts で画像が全部同じになっちゃう</title>
		<link>http://wp.foliz.net/archives/454</link>
		<comments>http://wp.foliz.net/archives/454#comments</comments>
		<pubDate>Wed, 06 Jul 2011 07:01:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wp.foliz.net/?p=454</guid>
		<description><![CDATA[先日メモしたwordpressプラグイン「Thumbnail for Excerpts」ですが、 get_posts()をつかったループ内だと画像が変わらないので 試行錯誤とりあえずの対処をメモします。 最初に行ったge [...]]]></description>
			<content:encoded><![CDATA[<p>先日メモしたwordpressプラグイン「<a href="http://www.cnet.ro/wordpress/thumbnailforexcerpts/">Thumbnail for Excerpts</a>」ですが、<br />
<a href="http://wpdocs.sourceforge.jp/%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E3%82%BF%E3%82%B0/get_posts">get_posts()</a>をつかったループ内だと画像が変わらないので<br />
試行錯誤とりあえずの対処をメモします。<br />
<span id="more-454"></span></p>
<p>最初に行ったget_posts()</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$myposts</span> <span style="color: #339933;">=</span> get_posts<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'numberposts=5&amp;category=4'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$myposts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span>
    setup_postdata<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;div class=&quot;dotline clearfix&quot;&gt;
    &lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt;
    &lt;p&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/p&gt;
&lt;/div&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endforeach</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>get_postsで読み込みたいカテゴリ記事を指定して<br />
ループで出力してます。<br />
この場合、バグなのだろうか、ループ内の画像が全て同じになってしまいます。</p>
<p><strong>対処後</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> query_posts<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'cat=3&amp;limit=5'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>have_posts<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: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;div class=&quot;dotline clearfix&quot;&gt;
 &lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permaLink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span>
   <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;p&gt;'</span><span style="color: #339933;">.</span>the_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/p&gt;&lt;/div&gt;'</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span>
 <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span>
wp_reset_query<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p><a href="http://wpdocs.sourceforge.jp/%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E3%82%BF%E3%82%B0/query_posts">query_posts()</a>にて拾うように変更しました。<br />
これでなんとか表示されましたけどー・・</p>
<p>なにか納得いかない。。（笑）</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.foliz.net/archives/454/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP トップページをサムネイル+文字数制限+モアリンクの設置</title>
		<link>http://wp.foliz.net/archives/441</link>
		<comments>http://wp.foliz.net/archives/441#comments</comments>
		<pubDate>Wed, 29 Jun 2011 05:02:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wp.foliz.net/?p=441</guid>
		<description><![CDATA[wordpressのカスタマイズのお仕事があったのでメモメモ トップページの表示は、挿入された画像を左に並べて・・テキストを詰めて・・ との要望があったので実装したメモ。 まずは、画像を抜き出し、テキストと画像を成形する [...]]]></description>
			<content:encoded><![CDATA[<p>wordpressのカスタマイズのお仕事があったのでメモメモ<br />
<span id="more-441"></span></p>
<p>トップページの表示は、挿入された画像を左に並べて・・テキストを詰めて・・<br />
との要望があったので実装したメモ。</p>
<p>まずは、画像を抜き出し、テキストと画像を成形するプラグインをインストール。<br />
<a href="http://www.cnet.ro/wordpress/thumbnailforexcerpts/">Thumbnail for Excerpts</a><br />
ダウンロードしたバージョンは2.1でした。</p>
<div id="attachment_442" class="wp-caption aligncenter" style="width: 274px"><a href="http://wp.foliz.net/wp-content/uploads/2011/06/screenshot-1.jpg"><img src="http://wp.foliz.net/wp-content/uploads/2011/06/screenshot-1-264x300.jpg" alt="Thumbnail for Excerpts　プラグイン" title="screenshot-1" width="264" height="300" class="size-medium wp-image-442" /></a><p class="wp-caption-text">Thumbnail for Excerptsプラグインに含まれてたサンプルイメージ</p></div>
<p>プラグインのインストールが完了すると、wp-adminで、設定の中に「Thumbnail Excerpts」が追加されます。<br />
今回はトップページだけの有効なのでApply on homeを「yes」にして保存。<br />
Width、Heightはデフォルト150pxから小さくしました。</p>
<p>これで登録されてる画像が抜かれ、キレイに成形されます。</p>
<p>続きまして、<br />
テキストの文字数制限をかけます。</p>
<p>標準でインストールされてる「WP Multibyte Patch」プラグインを有効にしておきます。</p>
<p>細かな設定は直接ファイルに書き込む仕様のようなので<br />
インストールされてるフォルダ（wp-content/plugins/wp-multibyte-patch）の「wpmp-config-sample.php」をコピーして「wpmp-config.php」の名前でアップロードします。<br />
「wpmp-config.php」に細かな設定があるのですがよくわからんのでとりあえずそのまま。</p>
<p>テンプレート側でhome.phpを以下に変更。</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div class=&quot;entry-content&quot;&gt;
    <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span>__<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'続きを読む'</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>
&lt;/div&gt;
↓↓↓
&lt;div class=&quot;entry-content&quot;&gt;
    <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/div&gt;</pre></div></div>

<p>これで文字数制限ができました。<br />
標準設定で日本語110文字で表示されます。</p>
<p>このままだと、 省略されたテキストが[...]と表示されるだけなので<br />
これにリンクを掛けます。</p>
<p>テンプレート側のテーマ関数に以下を追加</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009933; font-style: italic;">/**
 * 続きを読むリンクフィルター
**/</span>
<span style="color: #000000; font-weight: bold;">function</span> new_excerpt_more<span style="color: #009900;">&#40;</span><span style="color: #000088;">$more</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'……&lt;a href=&quot;'</span> <span style="color: #339933;">.</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&quot; title=&quot;'</span><span style="color: #339933;">.</span>get_the_title<span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;&gt;'</span> <span style="color: #339933;">.</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'[続きを読む]'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'excerpt_more'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'new_excerpt_more'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>ふ・・・これでばっちりｗ</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.foliz.net/archives/441/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ブログでメモとページ作成を使い分けてみる</title>
		<link>http://wp.foliz.net/archives/82</link>
		<comments>http://wp.foliz.net/archives/82#comments</comments>
		<pubDate>Thu, 26 Jun 2008 09:01:38 +0000</pubDate>
		<dc:creator>Fou</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wp.foliz.net/archives/82</guid>
		<description><![CDATA[日記のメモとして残す内容とページ追加で残していくのを使い分けてみようと思う。 日記で埋もれてしまうメモや自分リファレンス用に活用してみたい。。。（あくまで希望） まず/zendfremework/zend_validat [...]]]></description>
			<content:encoded><![CDATA[<p>日記のメモとして残す内容とページ追加で残していくのを使い分けてみようと思う。<br />
日記で埋もれてしまうメモや自分リファレンス用に活用してみたい。。。（あくまで希望）</p>
<p>まず<a href="/zendfremework/zend_validate">/zendfremework/zend_validate</a>から作ってみた。</p>
<p>しかしながらやっぱり見にくいなぁ。。<br />
もっとスマートに残していきたい＞＜</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.foliz.net/archives/82/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>テンプレート変更</title>
		<link>http://wp.foliz.net/archives/77</link>
		<comments>http://wp.foliz.net/archives/77#comments</comments>
		<pubDate>Thu, 19 Jun 2008 14:34:07 +0000</pubDate>
		<dc:creator>Fou</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wp.foliz.net/archives/77</guid>
		<description><![CDATA[最近スパムが多くなってきたのでスパム対策のついでにテンプレート変更。 ・・・と思ったがWP-Syntaxとの相性が悪くてちと難航中。 今日はこれぐらいにしておいて、また直そう。。。]]></description>
			<content:encoded><![CDATA[<p>最近スパムが多くなってきたのでスパム対策のついでにテンプレート変更。<br />
・・・と思ったがWP-Syntaxとの相性が悪くてちと難航中。<br />
今日はこれぐらいにしておいて、また直そう。。。</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.foliz.net/archives/77/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPressプラグイン：WP-Syntaxを入れてみた</title>
		<link>http://wp.foliz.net/archives/26</link>
		<comments>http://wp.foliz.net/archives/26#comments</comments>
		<pubDate>Tue, 04 Sep 2007 16:33:28 +0000</pubDate>
		<dc:creator>Fou</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wp.foliz.net/archives/26</guid>
		<description><![CDATA[web開発者のブログらしくソースコードに色が付くプラグインを入れてみた。 いろいろ探し回ってWP-Syntax « Extend › Pluginsを入れてみた。 Supported Languages The foll [...]]]></description>
			<content:encoded><![CDATA[<p>web開発者のブログらしくソースコードに色が付くプラグインを入れてみた。<br />
いろいろ探し回って<a href="http://wordpress.org/extend/plugins/wp-syntax/" title="WP-Syntax « Extend › Plugins">WP-Syntax « Extend › Plugins</a>を入れてみた。</p>
<p><a href="http://wordpress.org/extend/plugins/wp-syntax/" title="WP-Syntax Extend  Plugins"><img src="http://wp.foliz.net/wp-content/uploads/2007/09/output6.thumbnail.jpg" alt="WP-Syntax Extend Plugins" /></a></p>
<blockquote><p><strong>Supported Languages</strong><br />
The following languages are supported in the lang attribute:</p>
<p>abap, actionscript, ada, apache, applescript, asm, <strong>asp</strong>, autoit, <strong>bash</strong>, blitzbasic, bnf, <strong>c</strong>, c_mac, caddcl, cadlisp, cfdg, cfm, cpp-qt, <strong>cpp</strong>, <strong>csharp</strong>, <strong>css</strong>, d, delphi, diff, div, dos, dot, eiffel, fortran, freebasic, genero, gml, groovy, haskell, <strong>html4strict</strong>, idl, ini, inno, io, <strong>java</strong>, <strong>java5</strong>, <strong>javascript</strong>, latex, lisp, lua, m68k, matlab, mirc, mpasm, <strong>mysql</strong>, nsis, <strong>objc</strong>, ocaml-brief, ocaml, oobas, <strong>oracle8</strong>, pascal, per, <strong>perl</strong>, php-brief, strong&gt;php, plsql, <strong>python</strong>, qbasic, <strong>rails</strong>, reg, robots, <strong>ruby</strong>, sas, scheme, sdlbasic, smalltalk, smarty, <strong>sql</strong>, tcl, text, thinbasic, tsql, <strong>vb</strong>, <strong>vbnet</strong>, vhdl, visualfoxpro, winbatch, <strong>xml</strong>, xpp, z80</p>
<p>(Bold languages just highlight the more popular ones.)</p></blockquote>
<p>スタイルシートを指示通りに入れると現在のテンプレートではデザインが崩れるのでちょこっと改造</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.wp_syntax</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#100</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#f9f9f9</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">silver</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: #cc66cc;">0</span> <span style="color: #933;">1.5em</span> <span style="color: #933;">-2px</span><span style="color: #00AA00;">;</span>　<span style="color: #808080; font-style: italic;">/*-2pxに変更*/</span>
  <span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span><span style="color: #808080; font-style: italic;">/* IE FIX */</span>
<span style="color: #6666ff;">.wp_syntax</span> <span style="color: #00AA00;">&#123;</span>
  overflow-x<span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
  overflow-y<span style="color: #00AA00;">:</span> <span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> expression<span style="color: #00AA00;">&#40;</span>this<span style="color: #6666ff;">.scrollWidth</span> &amp;gt<span style="color: #00AA00;">;</span> this<span style="color: #6666ff;">.offsetWidth</span> ? <span style="color: #cc66cc;">15</span> <span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100%</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.wp_syntax</span> table <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">border-collapse</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">collapse</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.wp_syntax</span> div<span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.wp_syntax</span> td <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">vertical-align</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">2px</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.wp_syntax</span> <span style="color: #6666ff;">.line_numbers</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">text-align</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-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#def</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">gray</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">visible</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/* potential overrides for other styles */</span>
<span style="color: #6666ff;">.wp_syntax</span> pre <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/*なんとなく追加ｗ*/</span>
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">visible</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>過去の投稿もあわせて修正。</p>
<p>2009/10/01 ちょっと修正<br />
<del datetime="2009-10-01T08:52:17+00:00">tml4stric</del>　→　html4stric</p>
]]></content:encoded>
			<wfw:commentRss>http://wp.foliz.net/archives/26/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

