<?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>FAQ &#187; styling</title>
	<atom:link href="http://tenman.info/labo/manual/category/styling/feed/" rel="self" type="application/rss+xml" />
	<link>http://tenman.info/labo/manual</link>
	<description>Just another 仙台入門new weblog</description>
	<lastBuildDate>Fri, 20 Aug 2010 09:14:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>カスタムフィールドの「値だけ表示する」</title>
		<link>http://tenman.info/labo/manual/2009/05/27/%e3%82%ab%e3%82%b9%e3%82%bf%e3%83%a0%e3%83%95%e3%82%a3%e3%83%bc%e3%83%ab%e3%83%89%e3%81%ae%e3%80%8c%e5%80%a4%e3%81%a0%e3%81%91%e8%a1%a8%e7%a4%ba%e3%81%99%e3%82%8b%e3%80%8d/</link>
		<comments>http://tenman.info/labo/manual/2009/05/27/%e3%82%ab%e3%82%b9%e3%82%bf%e3%83%a0%e3%83%95%e3%82%a3%e3%83%bc%e3%83%ab%e3%83%89%e3%81%ae%e3%80%8c%e5%80%a4%e3%81%a0%e3%81%91%e8%a1%a8%e7%a4%ba%e3%81%99%e3%82%8b%e3%80%8d/#comments</comments>
		<pubDate>Tue, 26 May 2009 23:43:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[styling]]></category>
		<category><![CDATA[管理者]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[カスタムフィールド]]></category>

		<guid isPermaLink="false">http://tenman.info/labo/manual/?p=638</guid>
		<description><![CDATA[post_custom() the_meta()によって、すべてのカスタムフィールドのキーと値が表示されているときには、 &#60;?php echo post_custom('key'); ?&#62;を使う方法があります [...]]]></description>
			<content:encoded><![CDATA[

<h2 id="h2-post-6381">post_custom() </h2>

<p>the_meta()によって、すべてのカスタムフィールドのキーと値が表示されているときには、</p>

<pre id="presouce-post-6381">

<code title="line1">&lt;?php echo post_custom('key'); ?&gt;を使う方法があります。</code>
</pre>

<p>また、複数（の可能性がある）カスタムフィールドを表示する場合は、以下のようにしてもよいかもしれない。</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</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>
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$mywords</span> <span style="color: #339933;">=</span> post_custom<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'key'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">is_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$mywords</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #990000;">implode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$separator</span><span style="color: #339933;">,</span> <span style="color: #000088;">$mywords</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$mywords</span> <span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>


]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/27/%e3%82%ab%e3%82%b9%e3%82%bf%e3%83%a0%e3%83%95%e3%82%a3%e3%83%bc%e3%83%ab%e3%83%89%e3%81%ae%e3%80%8c%e5%80%a4%e3%81%a0%e3%81%91%e8%a1%a8%e7%a4%ba%e3%81%99%e3%82%8b%e3%80%8d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>権限と利用できる機能</title>
		<link>http://tenman.info/labo/manual/2009/05/26/%e6%a8%a9%e9%99%90%e3%81%a8%e5%88%a9%e7%94%a8%e3%81%a7%e3%81%8d%e3%82%8b%e6%a9%9f%e8%83%bd/</link>
		<comments>http://tenman.info/labo/manual/2009/05/26/%e6%a8%a9%e9%99%90%e3%81%a8%e5%88%a9%e7%94%a8%e3%81%a7%e3%81%8d%e3%82%8b%e6%a9%9f%e8%83%bd/#comments</comments>
		<pubDate>Tue, 26 May 2009 03:26:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[styling]]></category>
		<category><![CDATA[writing]]></category>
		<category><![CDATA[寄稿者]]></category>
		<category><![CDATA[投稿者]]></category>
		<category><![CDATA[用語]]></category>
		<category><![CDATA[管理者]]></category>
		<category><![CDATA[編集者]]></category>
		<category><![CDATA[購読者]]></category>

		<guid isPermaLink="false">http://tenman.info/labo/manual/?p=612</guid>
		<description><![CDATA[役割と権限 ワードプレスは、5段階の権限ランクがあり、その階層毎に、作業範囲があります。 資料：権限と作業範囲公開、ステータスには、公開済み　レビュー待ち　下書き、の3つのドキュメントのステータスがあります。レビュー待ち [...]]]></description>
			<content:encoded><![CDATA[

<p>役割と権限</p>

<p>ワードプレスは、5段階の権限ランクがあり、その階層毎に、作業範囲があります。<br /></p>

資料：<a href="#role">権限と作業範囲</a>公開、ステータスには、公開済み　レビュー待ち　下書き、の3つのドキュメントのステータスがあります。レビュー待ちは、査読申請中であることを表し、投稿については、作成者権限。ページについては、編集者権限以上の権限を有するものの、査読と公開の決済を受けなければなりません。非公開ドキュメントの購読だけが出来る購読者は、よく見受ける事例に例えると、「ここから先は、ユーザー登録をして、ログインして閲覧してください。」などのメッセージで、会員だけに閲覧させるような携帯のホームページに類似します。編集者モードは、文書の全体にわたる権限を有するものの、テンプレートファイルや、プラグインの導入などプログラムに関する権限を有しないので、ブログサービスなどでブログを各ブロガーの権限に近いものがあります。管理者は、各ブログに対して、利用できるプラグインや、テーマファイルを許可したりする事で、各ブログを個別に管理する事ができます。管理画面の権限による違い

<ul><li><a href="#adminpanel">管理者権限で投稿の公開設定部の画像</a></li><li><a href="#contributor">投稿者権限で投稿の公開設定部の画像</a></li></ul>

<p>上記写真のように、権限ごとに、操作可能な範囲も異なり、ドキュメントの公開権限を持たないユーザは、レビュー待ちボタンだけしか提供されません。</p>

<br style="line-height:100px" />

<table border="1"　id="role">
<caption>2.0系　権限と作業範囲</caption>
<tbody>

<tr>

<th> </th><th> 管理者 </th><th> 編集者 </th><th> 投稿者／作成者 </th><th> 寄稿者／投稿者 </th><th> 協力者／購読者</th>

</tr>

<tr>

<th>テーマの変更</th><td>◎</td>

</tr>

<tr>

<th>テーマの編集</th><td>◎</td>

</tr>

<tr>

<th>プラグインの有効化</th><td>◎</td>

</tr>

<tr>

<th>プラグインの編集</th><td>◎</td>

</tr>

<tr>

<th>ユーザの編集</th><td>◎</td>

</tr>

<tr>

<th>ファイルの編集</th><td>◎</td>

</tr>

<tr>

<th>設定の管理</th><td>◎</td>

</tr>

<tr>

<th>インポート</th><td>◎</td>

</tr>

<tr>

<th>コメントの承認</th><td>◎</td><td>◎</td>

</tr>

<tr>

<th>カテゴリーの管理</th><td>◎</td><td>◎</td>

</tr>

<tr>

<th>リンクの管理</th><td>◎</td><td>◎</td>

</tr>

<tr>

<th>フィルタリングされていないHTML</th><td>◎
</td><td>◎</td>

</tr>

<tr>

<th>投稿された記事の編集</th><td>◎</td><td>◎</td>

</tr>

<tr>

<th>他のユーザの記事の編集</th><td>◎</td><td>◎</td>

</tr>

<tr>

<th>ページの編集</th><td>◎</td><td>◎</td>

</tr>

<tr>

<th>ファイルアップロード</th><td>◎</td><td>◎</td><td>◎</td>

</tr>

<tr>

<th>記事の投稿</th><td>◎</td><td>◎</td><td>◎</td>

</tr>

<tr>

<th>記事の編集</th><td>◎</td><td>◎</td><td>◎
</td><td>◎</td>

</tr>

<tr>

<th>閲覧</th><td>◎</td><td>◎</td><td>◎</td><td>◎</td><td>◎</td>

</tr>

</tbody>

</table>

<img id="adminpanel" src="http://tenman.info/labo/format/files/2009/05/admin_panel_show.jpg" alt="admin_panel_show" title="admin_panel_show" width="300" height="413" class="alignnone size-full wp-image-1116" />

<img id="contributor" src="http://tenman.info/labo/format/files/2009/05/toukousya1.jpg" alt="toukousya1" title="toukousya1" width="290" height="194" class="alignnone size-full wp-image-1123" />

]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/26/%e6%a8%a9%e9%99%90%e3%81%a8%e5%88%a9%e7%94%a8%e3%81%a7%e3%81%8d%e3%82%8b%e6%a9%9f%e8%83%bd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>投稿画面から、ページスタイルを指定する方法</title>
		<link>http://tenman.info/labo/manual/2009/05/26/%e6%8a%95%e7%a8%bf%e7%94%bb%e9%9d%a2%e3%81%8b%e3%82%89%e3%80%81%e3%83%9a%e3%83%bc%e3%82%b8%e3%82%b9%e3%82%bf%e3%82%a4%e3%83%ab%e3%82%92%e6%8c%87%e5%ae%9a%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95/</link>
		<comments>http://tenman.info/labo/manual/2009/05/26/%e6%8a%95%e7%a8%bf%e7%94%bb%e9%9d%a2%e3%81%8b%e3%82%89%e3%80%81%e3%83%9a%e3%83%bc%e3%82%b8%e3%82%b9%e3%82%bf%e3%82%a4%e3%83%ab%e3%82%92%e6%8c%87%e5%ae%9a%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95/#comments</comments>
		<pubDate>Tue, 26 May 2009 02:30:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[styling]]></category>
		<category><![CDATA[管理者]]></category>
		<category><![CDATA[設定]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://tenman.info/labo/manual/?p=592</guid>
		<description><![CDATA[How to: Embed CSS in your posts with a custom field 特定の投稿に、特別なスタイル指定が必要な事があります。 CSSを直接変更する手もありますが、うまい方法とはいえません [...]]]></description>
			<content:encoded><![CDATA[

<p><a href="http://www.wprecipes.com/how-to-embed-css-in-your-posts-with-a-custom-field" onclick="this.target='_self';" onkeypress="this.target='_self';">How to: Embed CSS in your posts with a custom field</a></p>

<p>特定の投稿に、特別なスタイル指定が必要な事があります。<br />
CSSを直接変更する手もありますが、うまい方法とはいえません。<br />
カスタムフィールドを使ってCSSをページに埋め込むレシピを紹介します。</p>

<p>最初に、header.phpを開いて以下の高度を&lt;head&gt;と&lt;/head&gt;の間に、コピペしてください。</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$css</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'css'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$css</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
        &lt;style type=&quot;text/css&quot;&gt;
        <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$css</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
        &lt;style&gt;
    <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>


<p>一度これをコピペするだけで、投稿に、カスタムスタイルを適用したいときに、カスタムフィールドの名前をcssとして値にスタイル記述すれば、いつでも利用できるようになります。</p>

<div class="alert">

<p>この方法は、本文中にthe_meta()を使っている場合は、スタイルの指定が本文にも表示される不都合があります。<br />
以下に示す関数を、functions.phpに記述する事で、bodyタグ内に、the_meta()を記述しても、埋め込みCSSはフィルタされます。</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #009933; font-style: italic;">/**
 * カスタムフィールドで　'CSS', 'JavaScript', 'Meta'　は、the_metaから除外する。
 *
 *
 */</span>
<span style="color: #000000; font-weight: bold;">function</span> filter_explode_meta_keys<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$content</span><span style="color: #339933;">,</span> <span style="color: #000088;">$key</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$explode_keys</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'css'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'JavaScript'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'Meta'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// 除外したいキーを設定</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">in_array</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$key</span><span style="color: #339933;">,</span> <span style="color: #000088;">$explode_keys</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">return</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">return</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_filter<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'the_meta_key'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'filter_explode_meta_keys'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">2</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>


<p>動作に問題があるときには、cssのキー名が、全角になっていないかチェックしてみてください。</p>

</div>

]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/26/%e6%8a%95%e7%a8%bf%e7%94%bb%e9%9d%a2%e3%81%8b%e3%82%89%e3%80%81%e3%83%9a%e3%83%bc%e3%82%b8%e3%82%b9%e3%82%bf%e3%82%a4%e3%83%ab%e3%82%92%e6%8c%87%e5%ae%9a%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>もっとも、簡単なstyle.cssだけのテーマ</title>
		<link>http://tenman.info/labo/manual/2009/05/20/%e3%82%82%e3%81%a3%e3%81%a8%e3%82%82%e3%80%81%e7%b0%a1%e5%8d%98%e3%81%aastylecss%e3%81%a0%e3%81%91%e3%81%ae%e3%83%86%e3%83%bc%e3%83%9e/</link>
		<comments>http://tenman.info/labo/manual/2009/05/20/%e3%82%82%e3%81%a3%e3%81%a8%e3%82%82%e3%80%81%e7%b0%a1%e5%8d%98%e3%81%aastylecss%e3%81%a0%e3%81%91%e3%81%ae%e3%83%86%e3%83%bc%e3%83%9e/#comments</comments>
		<pubDate>Wed, 20 May 2009 07:43:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[styling]]></category>
		<category><![CDATA[管理者]]></category>
		<category><![CDATA[スタイル]]></category>
		<category><![CDATA[設定]]></category>

		<guid isPermaLink="false">http://tenman.info/labo/manual/?p=345</guid>
		<description><![CDATA[最も、簡単なテンプレートファイルを実際に作成して、確認する。 このエントリでは、style.css screenshot.pngの2つだけで構成するテンプレートファイルセットを作成する。 テーマファイルは、親テンプレート [...]]]></description>
			<content:encoded><![CDATA[<strong>最も、簡単なテンプレートファイルを実際に作成して、確認する。</strong>

<p>このエントリでは、style.css screenshot.pngの2つだけで構成するテンプレートファイルセットを作成する。<br /></p>

<span id="more-345"></span>

<p>テーマファイルは、<strong>親テンプレート</strong>を持つ事ができます。<br />
ワードプレスをインストールしたときに、標準で入っているデフォルトテンプレートを活用したいと思います。</p>

<p>親テンプレートとして、デフォルトテンプレートを継承してみます。</p>

<p>以下のように、template を　defaultと指定した。</p>


<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">/*   
Theme Name: extend default
Theme URI: http://www.tenman.info/
Description: extend test
Author: tenman akio
Author URI: http://www.tenman.info/
Template: default
Version: 0.1
&nbsp;
enjoy this theme
*/</pre></div></div>


<p>実際に作業を行いstylesheetの変更だけで見栄えを調整する場合には、既存テーマを継承してスタイルだけで見た目を変更するだけで、十分である事が確認できた。</p>

<p>ひとつのサイト内で、<strong>季節によって、背景を変更したり、デザインを調整するといった用途であれば、スタイルの変更だけで十分かもしれません</strong></p>

<blockquote　style="margin:2em;padding:2em;border:1px solid #ccc;background:#eef"cite="http://wpdocs.sourceforge.jp/%E3%83%86%E3%83%BC%E3%83%9E%E3%81%AE%E4%BD%9C%E6%88%90">
最も単純なテーマには、style.css ファイルと、あれば画像だけが含まれます。

このようなテーマを作成するには、style.css のヘッダコメント内の Template: 行を編集し、このテーマ用に継承させたいテンプレートのセットを指定する必要があります。

例えば、テーマ「Rose」に、別の「test」というテーマからテンプレートを継承させたい場合、Rose の style.css の冒頭のコメントに Template: test と書きます。

すると、「test」は、wp-content/themes/Rose ディレクトリにある style.css ファイルと付属画像のみからなる「Rose」の親テーマとなります。注： 「親テーマの指定」は、そのテーマから全てのテンプレートファイルを継承することに注意。子テーマディレクトリ内にテンプレートファイルがあっても無視されます。

</blockquote>


<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">/*   
Theme Name: Rose
Theme URI: テーマのホームサイトの URI
Description: a-brief-description
Author: 作者の名前
Author URI: 作者の URI
Template: 親テーマの定義（オプション）
Version: バージョン番号（オプション）
.
コメント／利用許諾の記述（あれば）
.
*/</pre></div></div>


]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/20/%e3%82%82%e3%81%a3%e3%81%a8%e3%82%82%e3%80%81%e7%b0%a1%e5%8d%98%e3%81%aastylecss%e3%81%a0%e3%81%91%e3%81%ae%e3%83%86%e3%83%bc%e3%83%9e/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>デザインを変更する</title>
		<link>http://tenman.info/labo/manual/2009/05/20/%e3%83%87%e3%82%b6%e3%82%a4%e3%83%b3%e3%82%92%e5%a4%89%e6%9b%b4%e3%81%99%e3%82%8b/</link>
		<comments>http://tenman.info/labo/manual/2009/05/20/%e3%83%87%e3%82%b6%e3%82%a4%e3%83%b3%e3%82%92%e5%a4%89%e6%9b%b4%e3%81%99%e3%82%8b/#comments</comments>
		<pubDate>Wed, 20 May 2009 04:18:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[styling]]></category>
		<category><![CDATA[権限]]></category>
		<category><![CDATA[管理者]]></category>
		<category><![CDATA[スタイル]]></category>
		<category><![CDATA[設定]]></category>

		<guid isPermaLink="false">http://tenman.info/labo/manual/?p=331</guid>
		<description><![CDATA[wordpressには、一瞬でブログサイト全体のデザインを変更するテーマ変更機能があります。 このエントリでは、テーマの選択と変更、ウィジェット、もっともシンプルなテーマファイルセットについて触れています。 デザインの変 [...]]]></description>
			<content:encoded><![CDATA[

<p>wordpressには、一瞬でブログサイト全体のデザインを変更するテーマ変更機能があります。<br />
このエントリでは、テーマの選択と変更、ウィジェット、もっともシンプルなテーマファイルセットについて触れています。<br /></p>

<span id="more-331"></span>

<p>デザインの変更を行うには、外観・テーマとクリックして、テーマ選択画面へ進みます。</p>

<p>wordpressは、検索画面、ページ、エントリ等、たくさんのページで構成されています。</p>

<p>これらのページ全体で、バランスのいいデザイン変更を行うことは、経験や知識が要求されます。</p>

<p>ただ、自分自身で最初からデザインを始めなくても、多くのユーザが、テーマファイルを配布したり、ワードプレスサイトからも、数千種のテーマをいつでも自由に使う事ができます。</p>

<p>テーマファイルも、プログラムです。悪意のあるものが配布した場合、wordpressのデータを改ざんしたり、ブログにアクセスしてきたユーザに関する情報を奪取する可能性もあります。したがって、そのテーマファイルが、信用できるもの可能かを常に考えておく必要があります。</p>

<p>テーマファイルもプラグインと同様に、開発元から、テーマファイルを直接インストールできますので、非常に簡単にテーマを変更できる環境は整っています。<br /></p>

<br style="line-height:20px" />

<p>次のページは、機能をドラッグアンドドロップで追加するウィジェットについて、</p>

]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/20/%e3%83%87%e3%82%b6%e3%82%a4%e3%83%b3%e3%82%92%e5%a4%89%e6%9b%b4%e3%81%99%e3%82%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>文章の作成　text2htmlプラグイン利用</title>
		<link>http://tenman.info/labo/manual/2009/05/19/%e6%96%87%e7%ab%a0%e3%81%ae%e4%bd%9c%e6%88%90%e3%80%80text2html%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3%e5%88%a9%e7%94%a8/</link>
		<comments>http://tenman.info/labo/manual/2009/05/19/%e6%96%87%e7%ab%a0%e3%81%ae%e4%bd%9c%e6%88%90%e3%80%80text2html%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3%e5%88%a9%e7%94%a8/#comments</comments>
		<pubDate>Tue, 19 May 2009 00:45:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[styling]]></category>
		<category><![CDATA[writing]]></category>
		<category><![CDATA[寄稿者]]></category>
		<category><![CDATA[投稿者]]></category>
		<category><![CDATA[未分類]]></category>
		<category><![CDATA[管理者]]></category>
		<category><![CDATA[編集者]]></category>

		<guid isPermaLink="false">http://tenman.info/labo/manual/?p=273</guid>
		<description><![CDATA[text2htmlを利用すると、WEB標準に準拠した文章を作成する事ができます。 htmlタグは使いません。エディタのタブは、HTMLを選択してください。 text2htmlは、記法といって、行の先頭や、文中で特別な記号 [...]]]></description>
			<content:encoded><![CDATA[

<p>text2htmlを利用すると、WEB標準に準拠した文章を作成する事ができます。</p>

<p>htmlタグは使いません。エディタのタブは、HTMLを選択してください。</p>

<p>text2htmlは、記法といって、行の先頭や、文中で特別な記号を使って記述します。<br />
htmlを簡略して、すばやく入力できます。</p>

<p>行頭につける記号</p>

<h2 id="h2-post-2731">アスタリスク(*)を行の先頭につけると見出しになります。</h2>

<p>この見出しは、アスタリスクをひとつつけて、以下のようなhtmlに変換を行います。<br />
code:</p>

<h2>アスタリスク(*)を行の先頭につけると見出しになります。</h2>

<p>アスタリスクは、1-5個並べて使う事で、大見出しから小見出しなどを作る事ができます。</p>

<h2 id="h2-post-2732">段落と改行のつけ方</h2>

<p>段落は、改行を2回連続すると段落になります。1回だけだと、段落内の改行になります。<br />
改行1回+
</p>

をつけても、改行を2回連続したのと同様になります。

<p>改行を2回以上続けても、段落と次の段落の間隔は、変更されません。</p>

<div class="tips">

<p>段落と次の段落の間を広げたいときには、以下の記法が使えます。行頭に以下のように記述できます。</p>

<pre id="presouce-post-2731">

<code title="line1">行間20:</code>
</pre>

<p>（行間の文字の後ろの数値が大きいほど段落間が離れます。）</p>

</div>

<h2 id="h2-post-2733">その他特別な事もできます。</h2>

<p>例えば、QRCODEを書きたいときには、</p>

<pre id="presouce-post-2732">

<code title="line1">qrcode&gt;(http://www.tenman.info/)</code>
</pre>

<p>と書いていただく事で、<br /></p>

<img src="http://www.odekake.biz/images/qr/qr_img.php?s=3&amp;v=0&amp;e=m&amp;d=http%3A%2F%2Fwww.tenman.info%2F" alt="http://www.tenman.info/" width="87" height="87" />を書く事ができたり、

<pre id="presouce-post-2733">

<code title="line1">pen&gt;(手書き文字)</code>
</pre>

<p>と書いていただく事で、</p>

<p class="text2image" style="height:26px;width:124px;background:url(http://www.tenman.info/labo/wp-content/plugins/text2html/images/13-deef216c10be11ac4cdae96b42ca3695.png);background-repeat:no-repeat;">
	<span style="display:none;font-size:13px;">手書き文字</span></p>

<p>という文字を記述する事ができます。もしhtmlを少し学んだ人ならば、</p>

<pre id="presouce-post-2734">

<code title="line1">pen&gt;(h3:mikaP16:上級者用)</code>
</pre>

<h3 class="text2image" style="height:32px;width:122px;background:url(http://www.tenman.info/labo/wp-content/plugins/text2html/images/16-7044ac36e4b67aa7c3a78f5bdd1382a0.png);background-repeat:no-repeat;">
	<span style="display:none;font-size:16px;">上級者用</span></h3>

<p>という風に、フォントを変更したり、htmlエレメントの指定も可能です。しかも、スタイルシートをはずしても、htmlは、正常に表示できます。</p>

]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/19/%e6%96%87%e7%ab%a0%e3%81%ae%e4%bd%9c%e6%88%90%e3%80%80text2html%e3%83%97%e3%83%a9%e3%82%b0%e3%82%a4%e3%83%b3%e5%88%a9%e7%94%a8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

