<?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; 設定</title>
	<atom:link href="http://tenman.info/labo/manual/tag/%e8%a8%ad%e5%ae%9a/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/29/%e7%94%bb%e5%83%8f%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ae%e6%83%85%e5%a0%b1%e3%82%92%e5%8f%96%e5%be%97%e3%81%99%e3%82%8b/</link>
		<comments>http://tenman.info/labo/manual/2009/05/29/%e7%94%bb%e5%83%8f%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ae%e6%83%85%e5%a0%b1%e3%82%92%e5%8f%96%e5%be%97%e3%81%99%e3%82%8b/#comments</comments>
		<pubDate>Fri, 29 May 2009 06:42:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[管理者]]></category>
		<category><![CDATA[設定]]></category>

		<guid isPermaLink="false">http://tenman.info/labo/manual/?p=699</guid>
		<description><![CDATA[画像idからURIを取得 アップロード画像の各サイズ (thumbnail, medium, large, full) の URL は、アタッチメントの ID が分かれば wp_get_attachment_image_ [...]]]></description>
			<content:encoded><![CDATA[<img src="http://tenman.info/labo/manual/files/edit1.jpg" alt="edit1" title="edit1" width="400" height="240" class="alignnone size-full wp-image-714" />

<h2 id="h2-post-6991">画像idからURIを取得</h2>

<p>アップロード画像の各サイズ (thumbnail, medium, large, full) の URL は、アタッチメントの ID が分かれば wp_get_attachment_image_src(　$id, $size ) で取得出来ます。<br />
この関数は画像の URL と　width, height を配列にして返します。</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"> <span style="color: #cc66cc;">516</span>  <span style="color: #009933; font-style: italic;">/**
 517   * Retrieve img HTML content for an image to represent an attachment.
 518   *
 519   * @see wp_get_attachment_image_src() Returns img HTML element based on array.
 520   * @since 2.5.0
 521   *
 522   * @param int $attachment_id Image attachment ID.
 523   * @param string $size Optional, default is 'thumbnail'.
 524   * @param bool $icon Optional, default is false. Whether it is an icon.
 525   * @return string HTML img element or empty string on failure.
 526   */</span>
 <span style="color: #cc66cc;">527</span>  <span style="color: #000000; font-weight: bold;">function</span> wp_get_attachment_image<span style="color: #009900;">&#40;</span><span style="color: #000088;">$attachment_id</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'thumbnail'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$icon</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
 <span style="color: #cc66cc;">528</span>  
 <span style="color: #cc66cc;">529</span>      <span style="color: #000088;">$html</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">530</span>      <span style="color: #000088;">$image</span> <span style="color: #339933;">=</span> wp_get_attachment_image_src<span style="color: #009900;">&#40;</span><span style="color: #000088;">$attachment_id</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span><span style="color: #339933;">,</span> <span style="color: #000088;">$icon</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">531</span>      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$image</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
 <span style="color: #cc66cc;">532</span>          <span style="color: #990000;">list</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$src</span><span style="color: #339933;">,</span> <span style="color: #000088;">$width</span><span style="color: #339933;">,</span> <span style="color: #000088;">$height</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$image</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">533</span>          <span style="color: #000088;">$hwstring</span> <span style="color: #339933;">=</span> image_hwstring<span style="color: #009900;">&#40;</span><span style="color: #000088;">$width</span><span style="color: #339933;">,</span> <span style="color: #000088;">$height</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">534</span>          <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;">$size</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
 <span style="color: #cc66cc;">535</span>              <span style="color: #000088;">$size</span> <span style="color: #339933;">=</span> <span style="color: #990000;">join</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'x'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">536</span>          <span style="color: #000088;">$html</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;img src=&quot;'</span><span style="color: #339933;">.</span>attribute_escape<span style="color: #009900;">&#40;</span><span style="color: #000088;">$src</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot; '</span><span style="color: #339933;">.</span><span style="color: #000088;">$hwstring</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'class=&quot;attachment-'</span><span style="color: #339933;">.</span>attribute_escape<span style="color: #009900;">&#40;</span><span style="color: #000088;">$size</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot; alt=&quot;&quot; /&gt;'</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">537</span>      <span style="color: #009900;">&#125;</span>
 <span style="color: #cc66cc;">538</span>  
 <span style="color: #cc66cc;">539</span>      <span style="color: #b1b100;">return</span> <span style="color: #000088;">$html</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">540</span>  <span style="color: #009900;">&#125;</span></pre></div></div>



<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;
 <span style="color: #cc66cc;">488</span>  <span style="color: #009933; font-style: italic;">/**
 489   * Retrieve an image to represent an attachment.
 490   *
 491   * A mime icon for files, thumbnail or intermediate size for images.
 492   *
 493   * @since 2.5.0
 494   *
 495   * @param int $attachment_id Image attachment ID.
 496   * @param string $size Optional, default is 'thumbnail'.
 497   * @param bool $icon Optional, default is false. Whether it is an icon.
 498   * @return bool|array Returns an array (url, width, height), or false, if no image is available.
 499   */</span>
 <span style="color: #cc66cc;">500</span>  <span style="color: #000000; font-weight: bold;">function</span> wp_get_attachment_image_src<span style="color: #009900;">&#40;</span><span style="color: #000088;">$attachment_id</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'thumbnail'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$icon</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
 <span style="color: #cc66cc;">501</span>  
 <span style="color: #cc66cc;">502</span>      <span style="color: #666666; font-style: italic;">// get a thumbnail or intermediate image if there is one</span>
 <span style="color: #cc66cc;">503</span>      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$image</span> <span style="color: #339933;">=</span> image_downsize<span style="color: #009900;">&#40;</span><span style="color: #000088;">$attachment_id</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
 <span style="color: #cc66cc;">504</span>          <span style="color: #b1b100;">return</span> <span style="color: #000088;">$image</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">505</span>  
 <span style="color: #cc66cc;">506</span>      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$icon</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$src</span> <span style="color: #339933;">=</span> wp_mime_type_icon<span style="color: #009900;">&#40;</span><span style="color: #000088;">$attachment_id</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
 <span style="color: #cc66cc;">507</span>          <span style="color: #000088;">$icon_dir</span> <span style="color: #339933;">=</span> apply_filters<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'icon_dir'</span><span style="color: #339933;">,</span> ABSPATH <span style="color: #339933;">.</span> WPINC <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/images/crystal'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">508</span>          <span style="color: #000088;">$src_file</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$icon_dir</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/'</span> <span style="color: #339933;">.</span> <span style="color: #990000;">basename</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$src</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">509</span>          <span style="color: #339933;">@</span><span style="color: #990000;">list</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$width</span><span style="color: #339933;">,</span> <span style="color: #000088;">$height</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">getimagesize</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$src_file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">510</span>      <span style="color: #009900;">&#125;</span>
 <span style="color: #cc66cc;">511</span>      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$src</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$width</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$height</span> <span style="color: #009900;">&#41;</span>
 <span style="color: #cc66cc;">512</span>          <span style="color: #b1b100;">return</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$src</span><span style="color: #339933;">,</span> <span style="color: #000088;">$width</span><span style="color: #339933;">,</span> <span style="color: #000088;">$height</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">513</span>      <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
 <span style="color: #cc66cc;">514</span>  <span style="color: #009900;">&#125;</span></pre></div></div>


<p>Well, I&#8217;m not sure if there&#8217;s a better way, but this worked</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$image</span><span style="color: #339933;">=</span>wp_get_attachment_image<span style="color: #009900;">&#40;</span><span style="color: #000088;">$num</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'large'</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: #000088;">$imagepieces</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$image</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$imagepath</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$imagepieces</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">4</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>


<p>In fact this is even cleaner, thanks to my buddies on Yay:</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$image</span><span style="color: #339933;">=</span>wp_get_attachment_image<span style="color: #009900;">&#40;</span><span style="color: #000088;">$num</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'large'</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: #000088;">$imagepieces</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&quot;'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$image</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$imagepath</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$imagepieces</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span></pre></div></div>


<p><a href="http://wordpress.org/support/topic/226898" onclick="this.target='_self';" onkeypress="this.target='_self';">Get &#8216;large&#8217; image attachments inside loop?</a></p>

<h3 id="h3-post-6991">エントリのidからその投稿に利用されている画像を探す。</h3>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009933; font-style: italic;">/**
2487   * Retrieve attachment meta field for attachment ID.
2488   *
2489   * @since 2.1.0
2490   *
2491   * @param int $post_id Attachment ID
2492   * @param bool $unfiltered Optional, default is false. If true, filters are not run.
2493   * @return string|bool Attachment meta field. False on failure.
2494   */</span>
<span style="color: #cc66cc;">2495</span>  <span style="color: #000000; font-weight: bold;">function</span> wp_get_attachment_metadata<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post_id</span><span style="color: #339933;">,</span> <span style="color: #000088;">$unfiltered</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #cc66cc;">2496</span>      <span style="color: #000088;">$post_id</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>int<span style="color: #009900;">&#41;</span> <span style="color: #000088;">$post_id</span><span style="color: #339933;">;</span>
<span style="color: #cc66cc;">2497</span>      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><span style="color: #000088;">$post</span> <span style="color: #339933;">=&amp;</span> get_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post_id</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
<span style="color: #cc66cc;">2498</span>          <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
<span style="color: #cc66cc;">2499</span>  
<span style="color: #cc66cc;">2500</span>      <span style="color: #000088;">$data</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;">'_wp_attachment_metadata'</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: #cc66cc;">2501</span>      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$unfiltered</span> <span style="color: #009900;">&#41;</span>
<span style="color: #cc66cc;">2502</span>          <span style="color: #b1b100;">return</span> <span style="color: #000088;">$data</span><span style="color: #339933;">;</span>
<span style="color: #cc66cc;">2503</span>      <span style="color: #b1b100;">return</span> apply_filters<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wp_get_attachment_metadata'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$data</span><span style="color: #339933;">,</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #cc66cc;">2504</span>  <span style="color: #009900;">&#125;</span>
<span style="color: #cc66cc;">2505</span></pre></div></div>


<p>その他の情報については wp_get_attachment_metadata( $id ) で取得できます。</p>

<p><a href="http://peta.okechan.net/blog/archives/519" onclick="this.target='_self';" onkeypress="this.target='_self';">wp_get_attachment_imageでalt属性を出力できるようにした</a></p>

<p>another:</p>

<p><a href="http://ja.forums.wordpress.org/topic/840" onclick="this.target='_self';" onkeypress="this.target='_self';">WordPress &amp;#8250; フォーラム &amp;raquo; the_attachment_linkで取得した画像をlightbox風に表示したい</a></p>

]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/29/%e7%94%bb%e5%83%8f%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ae%e6%83%85%e5%a0%b1%e3%82%92%e5%8f%96%e5%be%97%e3%81%99%e3%82%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>権限による入力制限　html</title>
		<link>http://tenman.info/labo/manual/2009/05/26/604/</link>
		<comments>http://tenman.info/labo/manual/2009/05/26/604/#comments</comments>
		<pubDate>Tue, 26 May 2009 02:58:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[管理者]]></category>
		<category><![CDATA[設定]]></category>

		<guid isPermaLink="false">http://tenman.info/labo/manual/?p=604</guid>
		<description><![CDATA[wordpressは、異なったユーザ権限を各ユーザに与える事ができます。 ユーザの権限により、入力可能なhtmlの制限されます。 一般的な無料ブログサービスなどでの、ユーザーと、wordpressの、投稿者権限は、大体似 [...]]]></description>
			<content:encoded><![CDATA[

<p>wordpressは、異なったユーザ権限を各ユーザに与える事ができます。<br />
ユーザの権限により、入力可能なhtmlの制限されます。</p>

<p>一般的な無料ブログサービスなどでの、ユーザーと、wordpressの、投稿者権限は、大体似ていて、iframe object form style等で、制限を受けます。</p>

<p>以下の例は、同じhtmlコードを権限の異なるユーザーでログインして、結果表示されたエントリーから、その部分を並べてみたものです。</p>

<p>※wordPress MU 2.7</p>

<table>

<tr>

<td>

<div style="width:300px;overflow:auto;">

<h2>管理者権限の投稿</h2>

<h3>目的</h3>

<p id="pparagraph1">このファイルは、ブラウザ依存のない標準的なタグによる。視覚的な表現の仕様を決定するために、作成しました。タグは、XHTML 1.0 Transitionalで使用できるものとしました。

実際に作成するdtdにより使用可能なタグは、制限（拡張）されます。

レイアウトは、3カラムレイアウトが、スタイルシートでプリセットされています。

W3Cのバリデーションサービスを通過しています。</p>

<p><a href="browsercheck.html">Dreamweaverによる、ターゲットブラウザチェック結果</a></p>

<p><a href="valid.html">Dreamweaverによるバリデータ</a></p>

<h4>プリセットid</h4>

<ul><li>id=&quot;head&quot;ドキュメントヘッダーブロック</li><li>id=&quot;left_navi&quot;左ナビゲーションブロックブロック</li><li>id=&quot;right_navi&quot;右ナビゲーションブロックブロック</li><li>id=&quot;page&quot;実ドキュメントブロック</li><li>id=&quot;foot&quot;ドキュメントフッターブロック</li></ul>

<h4>プリセットクラス　汎用</h4>

<ul><li>topic_path　トピックパス</li><li>name_anchor　名前付ページ内リンク</li><li>emphasis_recommend　おすすめの強調</li><li>emphasis_careful　注意喚起の強調</li><li>emphasis_warning　警告注意の強調</li><li>emphasis_danger　危険注意の強調</li><li>datetime 日付 時刻</li><li>signature 署名</li><li>email 電子メール</li><li>supplement 画像などの等価文書</li></ul>

<h4>プリセットクラス　ブロック</h4>

<ul><li>channel ブロック</li><li>channel h3　チャンネル　タイトル</li><li>channel a a:hover チャンネル　リンク</li><li>channel img チャンネル　イメージ</li><li>channel ul チャンネル　 リスト　</li><li>channel p チャンネル　 段落</li><li>channel .remark p チャンネル　 注釈</li></ul>

<div class="channel">

<h3>h3 title</h3>

<p><a href="index.html">index.html</a></p>

<p id="pparagraph2">html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0 または msie</p>

<p><img src="PHOT003.GIF" width="288" height="206" alt="sample image" /></p>

<ul><li><a href="index.html#1">index.html#1</a></li><li><a href="index.html#2">index.html#2</a></li><li><a href="index.html#3">index.html#3</a></li><li><a href="index.html#4">index.html#4</a></li><li><a href="index.html#5">index.html#5</a></li></ul>

<div class="remark">

<ul><li>signature 署名</li><li>email 電子メール</li><li>datetime 日付 時刻</li></ul>

</div>

</div>

<div class="channel1">

<h3>h3 title</h3>

<p><a href="index.html">index.html</a></p>

<p id="pparagraph3">html4.0、html4.01 transitional、html4.01 frameset</p>

<p id="pparagraph4">xhtml1.0 または msie</p>

<ul><li><a href="index.html#1">index.html#1</a></li><li><a href="index.html#2">index.html#2</a></li><li><a href="index.html#3">index.html#3</a></li><li><a href="index.html#4">index.html#4</a></li><li><a href="index.html#5">index.html#5</a></li></ul>

<div class="remark">

<ul class="remark"><li>signature 署名</li><li>email 電子メール</li><li>datetime 日付 時刻</li></ul>

</div>

</div>

<hr />

<h3>address</h3>

<address>

<p>addressあいうえおabc　ａｂｃ　abc ａｂｃ</p>

</address>

<p id="pparagraph5">連絡先</p>

<hr />

<h3>blockquote</h3>

<blockquote>

<p>blockquoteあいうえおabc　ａｂｃ　abc ａｂｃ</p>

</blockquote>

<p id="pparagraph6">長い引用　短い引用:q</p>

<hr />

<h3>div</h3>

<div>

<p> divあいうえおabc　ａｂｃ　abc ａｂｃ </p>

</div>

<p id="pparagraph7">ドキュメントブロック　division</p>

<hr />

<h3>dl　dt dd</h3>

<dl>

<dt> dtあいうえおabc　ａｂｃ　abc ａｂｃ </dt><dd>dd</dd><dd>あいうえお</dd><dd>abc　</dd><dd>ａｂｃ　</dd><dd>abc </dd><dd>ａｂｃ</dd>

</dl>

<p id="pparagraph8">データリスト</p>

<hr />

<h3>fieldset legend</h3>

<p>

<fieldset></p>

<p><legend accesskey="z">fieldset</legend></p>

<p>fieldsetあいうえおabc　ａｂｃ　abc ａｂｃtabindexは指定できません</p>

<p>

</fieldset>

</p>

<p id="pparagraph9">フォームグループ</p>

<hr />

<h3>form</h3>

<form action="basic.html" method="post">formあいうえおabc　ａｂｃ　abc ａｂｃ</p>

</form>

<hr />

<h3>noframes</h3>

<hr />

<h3>見出し</h3>

<p id="pparagraph10">h1-h6</p>

<h1> h1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h1><hr />

<h2> h2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h2>

<hr />

<h3> h3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h3>

<hr />

<h4> h4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h4>

<hr />

<h5> h5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h5>

<hr />

<h6> h6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h6>

<hr />

<h3>iframe</h3>

<p><iframe src="iframe.html" width="500" height="150" title="sample"> iframe src=&quot;iframe.html&quot; cols=&quot;50&quot; rows=&quot;50&quot;あいうえおabc　ａｂｃ　abc ａｂｃ </iframe></p>

<p id="pparagraph11">html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0 または msie</p>

<p id="pparagraph12">インラインフレーム</p>

<hr />

<h3>object</h3>

<p><object data="object.html" type="text/html" width="300" height="100"></p>

<p id="pparagraph13">画像切り替え　等価な内容の記述</p>

<p></object></p>

<p id="pparagraph14">object data=&quot;object.html&quot; type=&quot;text/html&quot; width=&quot;300&quot; height=&quot;100&quot;あいうえおabc　ａｂｃ　abc ａｂｃ</p>

<p id="pparagraph15">オブジェクト</p>

<hr />

<h3>ol</h3>

<ol><li>ol</li><li>あいうえお</li><li>abc　</li><li>ａｂｃ　</li><li>abc </li><li>ａｂｃ</li></ol>

<p id="pparagraph16">番号付リスト</p>

<hr />

<h3>p</h3>

<p id="pparagraph17">pあいうえおabc　ａｂｃ　abc ａｂｃ段落</p>

<hr />

<h3>ul</h3>

<ul><li>ol</li><li>あいうえお</li><li>abc　</li><li>ａｂｃ　</li><li>abc </li><li>ａｂｃ</li></ul>

<p id="pparagraph18">リスト</p>

<hr />

<h3 class="emphasis_careful">applet</h3>

<p><applet code="imagechanger.class" width="288" height="206">

<param name="images" value="PHOT003.GIF,PHOT005.GIF,PHOT021.GIF,PHOT059.GIF,PHOT065.GIF,PHOT063.GIF" />アプレットと等価な内容をここに記述する。</applet>&lt;applet code=&quot;imagechanger.class&quot; width=288 height=206&gt;</p>

<p>&lt;param name=&quot;images&quot;</p>

<p>value=&quot;phot003.gif,phot005.gif,phot021.gif,phot059.gif,phot065.gif,phot063.gif&quot;&gt;</p>

<p>&lt;/applet&gt;</p>

<p>imagechanger202.zipアプレット</p>

<hr />

<h3 class="emphasis_careful">center</h3>

<p><center>centerあいうえおabc　ａｂｃ　abc ａｂｃ</center>非推奨タグ&lt;div align=&quot;center&quot; &gt;&#8230;&#8230;.&lt;/div&gt;またはスタイルを適用中央揃え</p>

<hr />

<h3>hr</h3>

<hr />

<h3>pre </h3>

<pre> preあいうえおabc　ａｂｃ　abc ａｂｃ </pre><hr />

<h3>table tr td</h3>

<table border="1" width="500" summary="table sample">

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

</table>

<hr />

<h3>table thead th tbody tfoot tr td</h3>

<table border="1" width="500" summary="table sample"><thead style="background:#eeeedd">

<tr>

<th abbr="略称">ol</th><th abbr="略称">あいうえお</th><th abbr="略称">abc　</th><th abbr="略称">ａｂｃ　</th><th abbr="略称">abc </th><th abbr="略称">ａｂｃ</th>

</tr>

</thead><tfoot align="right" style="background:#c0c0c0">

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

</tfoot><tbody align="center" style="background:#ffffff">

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

</tbody>

</table>

<hr />

<h3>table tr td col</h3>

<table border="1" width="500" summary="table sample"><col style="background:#ccccff" width="100" align="right" /></p>

<p><col style="background:#eeccff" width="100" align="right" /></p>

<tbody>

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

</tbody>

</table>

<hr />

<h3>table tr td colgroup</h3>

<table border="1" width="500" summary="table sample"><colgroup style="background:#ccccff" width="100" align="right"></colgroup><colgroup style="background:#eeccff" width="100" align="right"></colgroup>

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

</table>

<hr />

<h3>table tr td caption</h3>

<table border="1" width="500" summary="table sample"><caption>captionあいうえおabc　ａｂｃ　abc ａｂｃ</caption>

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td><td>あいうえお</td><td>abc　</td><td>ａｂｃ　</td><td>abc </td><td>ａｂｃ</td>

</tr>

</table>

<hr />

<h3>form input type=text</h3>

<h3>form</h3>

<form action="basic.html" method="post"><input type="text" name="sample1" value="form" accesskey="a" tabindex="1" /><input type="text" name="sample2" value="あいうえお" accesskey="b" tabindex="2" /><input type="text" name="sample3" value="abc" accesskey="c" tabindex="3" /><input type="text" name="sample4" value="ａｂｃ" accesskey="d" tabindex="4" /><input type="text" name="sample5" value="abc" accesskey="e" tabindex="5" /><input type="text" name="sample6" value="ａｂｃ" accesskey="f" tabindex="6" /></form>

<hr />

<h3>form input type=radio</h3>

<h3>form</h3>

<form action="basic.html" method="post"><input type="radio" name="sample" value="form" accesskey="g" tabindex="7" />form</p>

<input type="radio" name="sample" value="あいうえお" accesskey="h" tabindex="8" />

<p>あいうえお</p>

<input type="radio" name="sample" value="abc" accesskey="i" tabindex="9" />abc</p>

<input type="radio" name="sample" value="ａｂｃ" accesskey="j" tabindex="10" />ａｂｃ</p>

<input type="radio" name="sample" value="abc" accesskey="k" tabindex="11" />abc</p>

<input type="radio" name="sample" value="ａｂｃ" accesskey="l" tabindex="12" />ａｂｃ</p>

</form>

<hr />

<h3>form　type=&quot;checkbox&quot;</h3>

<form action="basic.html" method="post"><input type="checkbox" name="sample" value="form" accesskey="m" tabindex="13" />form</p>

<input type="checkbox" name="sample" value="あいうえお" accesskey="n" tabindex="14" />あいうえお</p>

<input type="checkbox" name="sample" value="abc" accesskey="o" tabindex="15" />abc</p>

<input type="checkbox" name="sample" value="ａｂｃ" accesskey="p" tabindex="16" />

<p>ａｂｃ</p>

<input type="checkbox" name="sample" value="abc" accesskey="q" tabindex="17" />abc</p>

<input type="checkbox" name="sample" value="ａｂｃ" accesskey="r" tabindex="18" />ａｂｃ</p>

</form>

<hr />

<h3>FORM SELECT NAME=&quot;SAMPLE1&quot; SIZE=&quot;7&quot; MULTIPLE</h3>

<form action="basic.html" method="post"><select name="sample1" size="3" multiple="multiple" tabindex="19"><option value="サンプル" selected="selected">サンプル</option><option value="form">form</option><option value="あいうえお">あいうえお</option><option value="abc">abc</option><option value="ａｂｃ">ａｂｃ</option></p>

<p><option value="abc">abc</option><option value="ａｂｃ">ａｂｃ</option></select></form>

<hr />

<h3>form　type=&quot;submit&quot; type=&quot;reset&quot;</h3>

<form action="basic.html" method="post"><input type="submit" value="サンプル" accesskey="t" tabindex="10" /><input type="submit" value="form" accesskey="u" tabindex="21" /><input type="submit" value="あいうえお" accesskey="s" tabindex="22" /><input type="submit" value="abc" accesskey="v" tabindex="23" /><input type="submit" value="ａｂｃ" accesskey="w" tabindex="24" /><input type="submit" value="abc" accesskey="x" tabindex="25" /><input type="submit" value="ａｂｃ" accesskey="y" tabindex="26" /><input type="reset" value="リセット" accesskey="z" tabindex="27" /></form>

<hr />

<h3>form　type=&quot;password&quot; name=&quot;pass&quot; size=&quot;30&quot; maxlength=&quot;30&quot;</h3>

<form action="basic.html" method="post"><input type="password" name="pass" size="30" maxlength="30" accesskey="z" tabindex="29" /></form>

<hr />

<h3>form　type=&quot;file&quot; name=&quot;sample&quot; size=&quot;30&quot;</h3>

<form action="basic.html" method="post"><input type="file" name="sample" size="30" accesskey="z" tabindex="30" /></form>

<hr />

<h3>form　textarea wrap=&quot;hard&quot;</h3>

<form action="basic.html" method="post"><textarea name="message" cols="50" rows="5" accesskey="z" tabindex="31">strongあいうえおabc　ａｂｃ　abc ａｂｃ</textarea></p>

</form>

<hr />

<h3 class="emphasis_careful">dir</h3>

<p><dir></p>

<li>ol</li><li>あいうえお</li><li>abc　</li><li>ａｂｃ　</li><li>abc </li><li>ａｂｃ</li>

<p></dir></p>

<p id="pparagraph19">非推奨タグ　代替：&lt;ul&gt;&#8230;&#8230;.&lt;/ul&gt;</p>

<p id="pparagraph20">html1.0、html2.0、html2.x、html+、html3.0、html3.2、html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0、mozilla、msie、webexplorer、compact html、imode dotiタグ</p>

<hr />

<h3 class="emphasis_careful">menu</h3>

<p><menu></p>

<li>ol</li><li>あいうえお</li><li>abc　</li><li>ａｂｃ　</li><li>abc </li><li>ａｂｃ</li>

<p></menu></p>

<p id="pparagraph21">非推奨タグ　代替：&lt;ul&gt;&#8230;&#8230;.&lt;/ul&gt;</p>

<p id="pparagraph22">html1.0、html2.0、html2.x、html+、html3.0、html3.2、html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0、mozilla、msie、webexplorer、compact html、imode または doti 用のタグ</p>

<hr />

<h3 class="emphasis_careful">b</h3>

<p><b> bあいうえおabc　ａｂｃ　abc ａｂｃ </b></p>

<p id="pparagraph23">非推奨　物理的フォントタグ　論理的タグ推奨　代替：strong</p>

<hr />

<h3>strong</h3>

<p><strong> strongあいうえおabc　ａｂｃ　abc ａｂｃ </strong></p>

<hr />

<h3>blockquote</h3>

<blockquote>

<p> blockquoteあいうえおabc　ａｂｃ　abc ａｂｃ </p>

</blockquote>

<hr />

<h3 class="emphasis_careful">i</h3>

<p><i> iあいうえおabc　ａｂｃ　abc ａｂｃ </i></p>

<p id="pparagraph24">非推奨　物理的フォントタグ　論理的タグ推奨　代替： em</p>

<hr />

<h3>cite</h3>

<p><cite> citeあいうえおabc　ａｂｃ　abc ａｂｃ </cite></p>

<p id="pparagraph25">引用語句の意味で使用し、イタリック体</p>

<hr />

<h3>em</h3>

<p><em> emあいうえおabc　ａｂｃ　abc ａｂｃ </em></p>

<p id="pparagraph26">強調の意味で使用し、イタリック体</p>

<hr />

<h3>var</h3>

<p><var> varあいうえおabc　ａｂｃ　abc ａｂｃ </var></p>

<p id="pparagraph27">変数の意味で使用し、イタリック体</p>

<hr />

<h3>address</h3>

<address>

<p>addressあいうえおabc　ａｂｃ　abc ａｂｃ</p>

</address>

<hr />

<h3>pre</h3>

<pre> preあいうえおabc　ａｂｃ　abc ａｂｃ </pre><hr />

<h3 class="emphasis_careful">tt</h3>

<p><tt> ttあいうえおabc　ａｂｃ　abc ａｂｃ </tt></p>

<p id="pparagraph28">非推奨　物理的フォントタグ　論理的タグ推奨　代替：code、samp、kbd　</p>

<hr />

<h3>code</h3>

<p>

<code></p>

<p> codeあいうえおabc　ａｂｃ　abc ａｂｃ </code>
</p>

<p id="pparagraph29">プログラムコードの意味で使用し、等幅フォント</p>

<hr />

<h3>kbd</h3>

<p><kbd> kbdあいうえおabc　ａｂｃ　abc ａｂｃ </kbd></p>

<p id="pparagraph30">ユーザが入力する文字列</p>

<hr />

<h3>samp</h3>

<p><samp> sampあいうえおabc　ａｂｃ　abc ａｂｃ </samp></p>

<p id="pparagraph31">サンプル</p>

<hr />

<h3>pre</h3>

<pre> preあいうえおabc　ａｂｃ　abc ａｂｃ </pre><hr />

<h3>big</h3>

<p><big> bigあいうえおabc　ａｂｃ　abc ａｂｃ </big></p>

<hr />

<h3>small</h3>

<p><small> smallあいうえおabc　ａｂｃ　abc ａｂｃ </small></p>

<hr />

<h3>sub</h3>

<p id="pparagraph32">1<sub> subあいうえおabc　ａｂｃ　abc ａｂｃ </sub></p>

<hr />

<h3>sup</h3>

<p id="pparagraph33">1<sup> supあいうえおabc　ａｂｃ　abc ａｂｃ </sup></p>

<hr />

<h3 class="emphasis_careful">s</h3>

<p><s> sあいうえおabc　ａｂｃ　abc ａｂｃ </s></p>

<p id="pparagraph34">抹消線html+、html3.0、html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0、mozilla、msie または webexplorer 用のタグ</p>

<hr />

<h3 class="emphasis_careful">strike</h3>

<p><strike> strikeあいうえおabc　ａｂｃ　abc ａｂｃ </strike></p>

<p id="pparagraph35">非推奨　抹消線は html3.2、html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0、mozilla または msie 用のタグです。</p>

<hr />

<h3>del</h3>

<p><del cite="http://www.w3.org/tr/rec-html40/appendix/changes.html#h-a.1.3" datetime="1997-12-19T00:00:00-05:00" title="xmp is obsolete"></p>

<p id="pparagraph36">the xmp element contains preformatted text in which markup other than an end tag is treated as literal text.</p>

<p></del></p>

<hr />

<h3>ins</h3>

<p id="pparagraph37">web標準で、</p>

<p><ins datetime="2003-10-18T22:22:08+09:00"></p>

<p id="pparagraph38">いや、web標準を目標に、</p>

<p></ins></p>

<p id="pparagraph39">ページを作っても、気づく人も少ない。web標準だから、画面が乱れないとも、バリデータを通ったから、完全だとも言えまい。web標準は、自慢することではない。</p>

<p id="pparagraph40">保守的な行動をする人がいて、革新的なことに興味をそそられる人もいて、そのどちらでもない人が、目立つことはない。ただ、偏らないことは、簡単に出来はしない。</p>

</div>

</td><td>

<div style="width:300px;overflow:auto;">

<h2>投稿者権限で投稿</h2>

<h3>目的</h3>

<p id="pparagraph1">このファイルは、ブラウザ依存のない標準的なタグによる。視覚的な表現の仕様を決定するために、作成しました。タグは、XHTML 1.0 Transitionalで使用できるものとしました。実際に作成するdtdにより使用可能なタグは、制限（拡張）されます。レイアウトは、3カラムレイアウトが、スタイルシートでプリセットされています。W3Cのバリデーションサービスを通過しています。</p>

<p><a href="browsercheck.html">Dreamweaverによる、ターゲットブラウザチェック結果</a></p>

<p><a href="valid.html">Dreamweaverによるバリデータ</a></p>

<h4>プリセットid</h4>

<ul><li>id=&quot;head&quot;ドキュメントヘッダーブロック</li><li>id=&quot;left_navi&quot;左ナビゲーションブロックブロック</li><li>id=&quot;right_navi&quot;右ナビゲーションブロックブロック</li><li>id=&quot;page&quot;実ドキュメントブロック</li><li>id=&quot;foot&quot;ドキュメントフッターブロック</li></ul>

<h4>プリセットクラス　汎用</h4>

<ul><li>topic_path　トピックパス</li><li>name_anchor　名前付ページ内リンク</li><li>emphasis_recommend　おすすめの強調</li><li>emphasis_careful　注意喚起の強調</li><li>emphasis_warning　警告注意の強調</li><li>emphasis_danger　危険注意の強調</li><li>datetime 日付 時刻</li><li>signature 署名</li><li>email 電子メール</li><li>supplement 画像などの等価文書</li></ul>

<h4>プリセットクラス　ブロック</h4>

<ul><li>channel ブロック</li><li>channel h3　チャンネル　タイトル</li><li>channel a a:hover チャンネル　リンク</li><li>channel img チャンネル　イメージ</li><li>channel ul チャンネル　 リスト　</li><li>channel p チャンネル　 段落</li><li>channel .remark p チャンネル　 注釈</li></ul>

<div class="channel">

<h3>h3 title</h3>

<p><a href="index.html">index.html</a></p>

<p id="pparagraph2">html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0 または msie</p>

<p><img src="/images/logo.gif" width="32" height="32" alt="sample image" /></p>

<ul><li><a href="index.html#1">index.html#1</a></li><li><a href="index.html#2">index.html#2</a></li><li><a href="index.html#3">index.html#3</a></li><li><a href="index.html#4">index.html#4</a></li><li><a href="index.html#5">index.html#5</a></li></ul>

<div class="remark">

<ul><li>signature 署名</li><li>email 電子メール</li><li>datetime 日付 時刻</li></ul>

</div>

</div>

<div class="channel1">

<h3>h3 title</h3>

<p><a href="index.html">index.html</a></p>

<p id="pparagraph3">html4.0、html4.01 transitional、html4.01 frameset</p>

<p id="pparagraph4">xhtml1.0 または msie</p>

<ul><li><a href="index.html#1">index.html#1</a></li><li><a href="index.html#2">index.html#2</a></li><li><a href="index.html#3">index.html#3</a></li><li><a href="index.html#4">index.html#4</a></li><li><a href="index.html#5">index.html#5</a>
</li>
</ul>

<div class="remark">

<ul class="remark">
<li>signature 署名</li>
<li>email 電子メール</li>
<li>datetime 日付 時刻</li>

</ul>

</div>

</div>

<hr />

<h3>address</h3>

<address>

<p>addressあいうえおabc　ａｂｃ　abc ａｂｃ</p>

</address>

<p id="pparagraph5">連絡先</p>

<hr />

<h3>blockquote</h3>

<blockquote>

<p>blockquoteあいうえおabc　ａｂｃ　abc ａｂｃ</p>

</blockquote>

<p id="pparagraph6">長い引用　短い引用:q</p>

<hr />

<h3>div</h3>

<div>

<p> divあいうえおabc　ａｂｃ　abc ａｂｃ </p>

</div>

<p id="pparagraph7">ドキュメントブロック　division</p>

<hr />

<h3>dl　dt dd</h3>

<dl>

<dt> dtあいうえおabc　ａｂｃ　abc ａｂｃ </dt>
<dd>dd</dd>
<dd>あいうえお</dd>
<dd>abc　</dd>
<dd>ａｂｃ　</dd>
<dd>abc </dd>
<dd>ａｂｃ</dd>

</dl>

<p id="pparagraph8">データリスト</p>

<hr />

<h3>fieldset legend</h3>

<p>

<fieldset></p>

<p><legend>fieldset</legend></p>

<p>fieldsetあいうえおabc　ａｂｃ　abc ａｂｃ

tabindexは指定できません</p>

<p>

</fieldset>

</p>

<p id="pparagraph9">フォームグループ</p>

<hr />

<h3>form</h3>

<form action="basic.html" method="post">

formあいうえおabc　ａｂｃ　abc ａｂｃ</p>

</form>

<hr />

<h3>noframes</h3>

<hr />

<h3>見出し</h3>

<p id="pparagraph10">h1-h6</p>

<h1> h1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h1>
<hr />

<h2> h2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h2>

<hr />

<h3> h3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h3>

<hr />

<h4> h4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h4>

<hr />

<h5> h5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h5>

<hr />

<h6> h6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;あいうえおabc　ａｂｃ　abc ａｂｃ </h6>

<hr />

<h3>iframe</h3>

<p id="pparagraph11">iframe src=&quot;iframe.html&quot; cols=&quot;50&quot; rows=&quot;50&quot;あいうえおabc　ａｂｃ　abc ａｂｃ

html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0 または msie</p>

<p id="pparagraph12">インラインフレーム</p>

<hr />

<h3>object</h3>

<p id="pparagraph13">画像切り替え　等価な内容の記述</p>

<p id="pparagraph14">object data=&quot;object.html&quot; type=&quot;text/html&quot; width=&quot;300&quot; height=&quot;100&quot;あいうえおabc　ａｂｃ　abc ａｂｃ</p>

<p id="pparagraph15">オブジェクト</p>

<hr />

<h3>ol</h3>

<ol>
<li>ol</li>
<li>あいうえお</li>
<li>abc　</li>
<li>ａｂｃ　</li>
<li>abc </li>
<li>ａｂｃ</li>

</ol>

<p id="pparagraph16">番号付リスト</p>

<hr />

<h3>p</h3>

<p id="pparagraph17">pあいうえおabc　ａｂｃ　abc ａｂｃ

段落</p>

<hr />

<h3>ul</h3>

<ul>
<li>ol</li>
<li>あいうえお</li>

<li>abc　</li>
<li>ａｂｃ　</li>
<li>abc </li>
<li>ａｂｃ</li>
</ul>

<p id="pparagraph18">リスト</p>

<hr />

<h3 class="emphasis_careful">applet</h3>

<p id="pparagraph19">アプレットと等価な内容をここに記述する。</p>

<p id="pparagraph20">&lt;applet code=&quot;imagechanger.class&quot; width=288 height=206&gt;</p>

<p id="pparagraph21">&lt;param name=&quot;images&quot;</p>

<p id="pparagraph22">value=&quot;phot003.gif,phot005.gif,phot021.gif,phot059.gif,phot065.gif,phot063.gif&quot;&gt;</p>

<p id="pparagraph23">&lt;/applet&gt;</p>

<p id="pparagraph24">imagechanger202.zipアプレット</p>

<hr />

<h3 class="emphasis_careful">center</h3>

<p id="pparagraph25">centerあいうえおabc　ａｂｃ　abc ａｂｃ</p>

<p id="pparagraph26">非推奨タグ&lt;div align=&quot;center&quot; &gt;&#8230;&#8230;.&lt;/div&gt;またはスタイルを適用

中央揃え</p>

<hr />

<h3>hr</h3>

<hr />

<h3>pre </h3>

<pre> preあいうえおabc　ａｂｃ　abc ａｂｃ </pre>
<hr />

<h3>table tr td</h3>

<table border="1" width="500" summary="table sample">

<tr>

<td>ol</td>

<td>あいうえお</td>
<td>abc　</td>
<td>ａｂｃ　</td>
<td>abc </td>
<td>ａｂｃ</td>

</tr>

</table>

<hr />

<h3>table thead th tbody tfoot tr td</h3>

<table border="1" width="500" summary="table sample">
<thead>

<tr>

<th abbr="略称">ol</th>
<th abbr="略称">あいうえお</th>
<th abbr="略称">abc　</th>
<th abbr="略称">ａｂｃ　</th>
<th abbr="略称">abc </th>
<th abbr="略称">ａｂｃ</th>

</tr>

</thead>
<tfoot align="right">

<tr>

<td>ol</td>
<td>あいうえお</td>
<td>abc　</td>
<td>ａｂｃ　</td>
<td>abc </td>
<td>ａｂｃ</td>

</tr>

</tfoot>
<tbody align="center">

<tr>

<td>ol</td>

<td>あいうえお</td>
<td>abc　</td>
<td>ａｂｃ　</td>
<td>abc </td>
<td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td>
<td>あいうえお</td>
<td>abc　</td>

<td>ａｂｃ　</td>
<td>abc </td>
<td>ａｂｃ</td>

</tr>

</tbody>

</table>

<hr />

<h3>table tr td col</h3>

<table border="1" width="500" summary="table sample">
<col width="100" align="right" /></p>

<p><col width="100" align="right" /></p>

<tbody>

<tr>

<td>ol</td>
<td>あいうえお</td>
<td>abc　</td>
<td>ａｂｃ　</td>
<td>abc </td>
<td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td>
<td>あいうえお</td>

<td>abc　</td>
<td>ａｂｃ　</td>
<td>abc </td>
<td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td>
<td>あいうえお</td>
<td>abc　</td>
<td>ａｂｃ　</td>

<td>abc </td>
<td>ａｂｃ</td>

</tr>

</tbody>

</table>

<hr />

<h3>table tr td colgroup</h3>

<table border="1" width="500" summary="table sample">

<tr>

<td>ol</td>
<td>あいうえお</td>
<td>abc　</td>

<td>ａｂｃ　</td>
<td>abc </td>
<td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td>
<td>あいうえお</td>
<td>abc　</td>
<td>ａｂｃ　</td>
<td>abc </td>

<td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td>
<td>あいうえお</td>
<td>abc　</td>
<td>ａｂｃ　</td>
<td>abc </td>
<td>ａｂｃ</td>

</tr>

</table>

<hr />

<h3>table tr td caption</h3>

<table border="1" width="500" summary="table sample">
<caption>
captionあいうえおabc　ａｂｃ　abc ａｂｃ

</caption>

<tr>

<td>ol</td>
<td>あいうえお</td>
<td>abc　</td>
<td>ａｂｃ　</td>

<td>abc </td>
<td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td>
<td>あいうえお</td>
<td>abc　</td>
<td>ａｂｃ　</td>
<td>abc </td>
<td>ａｂｃ</td>

</tr>

<tr>

<td>ol</td>
<td>あいうえお</td>
<td>abc　</td>
<td>ａｂｃ　</td>
<td>abc </td>
<td>ａｂｃ</td>

</tr>

</table>

<hr />

<h3>form input type=text</h3>

<h3>form</h3>

<form action="basic.html" method="post">
</form>

<hr />

<h3>form input type=radio</h3>

<h3>form</h3>

<form action="basic.html" method="post">

<p>form</p>

<p>あいうえお</p>

<p>abc</p>

<p>ａｂｃ</p>

<p>abc</p>

<p>ａｂｃ</p>

</form>

<hr />

<h3>form　type=&quot;checkbox&quot;</h3>

<form action="basic.html" method="post">

<p>form</p>

<p>あいうえお</p>

<p>abc</p>

<p>ａｂｃ</p>

<p>abc</p>

<p>ａｂｃ</p>

</form>

<hr />

<h3>FORM SELECT NAME=&quot;SAMPLE1&quot; SIZE=&quot;7&quot; MULTIPLE</h3>

<form action="basic.html" method="post">

<p>サンプル

form

あいうえお

abc

ａｂｃ</p>

<p>abc

ａｂｃ</p>

</form>

<hr />

<h3>form　type=&quot;submit&quot; type=&quot;reset&quot;</h3>

<form action="basic.html" method="post">
</form>

<hr />

<h3>form　type=&quot;password&quot; name=&quot;pass&quot; size=&quot;30&quot; maxlength=&quot;30&quot;</h3>

<form action="basic.html" method="post">
</form>

<hr />

<h3>form　type=&quot;file&quot; name=&quot;sample&quot; size=&quot;30&quot;</h3>

<form action="basic.html" method="post">
</form>

<hr />

<h3>form　textarea wrap=&quot;hard&quot;</h3>

<form action="basic.html" method="post">

<textarea name="message" cols="50" rows="5">strongあいうえおabc　ａｂｃ　abc ａｂｃ</textarea></p>

</form>

<hr />

<h3 class="emphasis_careful">dir</h3>

<li>ol</li>
<li>あいうえお</li>
<li>abc　</li>
<li>ａｂｃ　</li>
<li>abc </li>
<li>ａｂｃ</li>

<p id="pparagraph27">非推奨タグ　代替：&lt;ul&gt;&#8230;&#8230;.&lt;/ul&gt;</p>

<p id="pparagraph28">html1.0、html2.0、html2.x、html+、html3.0、html3.2、html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0、mozilla、msie、webexplorer、compact html、imode dotiタグ</p>

<hr />

<h3 class="emphasis_careful">menu</h3>

<li>ol</li>
<li>あいうえお</li>
<li>abc　</li>
<li>ａｂｃ　</li>

<li>abc </li>
<li>ａｂｃ</li>

<p id="pparagraph29">非推奨タグ　代替：&lt;ul&gt;&#8230;&#8230;.&lt;/ul&gt;</p>

<p id="pparagraph30">html1.0、html2.0、html2.x、html+、html3.0、html3.2、html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0、mozilla、msie、webexplorer、compact html、imode または doti 用のタグ</p>

<hr />

<h3 class="emphasis_careful">b</h3>

<p><b> bあいうえおabc　ａｂｃ　abc ａｂｃ </b></p>

<p id="pparagraph31">非推奨　物理的フォントタグ　論理的タグ推奨　代替：strong</p>

<hr />

<h3>strong</h3>

<p><strong> strongあいうえおabc　ａｂｃ　abc ａｂｃ </strong></p>

<hr />

<h3>blockquote</h3>

<blockquote>

<p> blockquoteあいうえおabc　ａｂｃ　abc ａｂｃ </p>

</blockquote>

<hr />

<h3 class="emphasis_careful">i</h3>

<p><i> iあいうえおabc　ａｂｃ　abc ａｂｃ </i></p>

<p id="pparagraph32">非推奨　物理的フォントタグ　論理的タグ推奨　代替： em</p>

<hr />

<h3>cite</h3>

<p><cite> citeあいうえおabc　ａｂｃ　abc ａｂｃ </cite></p>

<p id="pparagraph33">引用語句の意味で使用し、イタリック体</p>

<hr />

<h3>em</h3>

<p><em> emあいうえおabc　ａｂｃ　abc ａｂｃ </em></p>

<p id="pparagraph34">強調の意味で使用し、イタリック体</p>

<hr />

<h3>var</h3>

<p><var> varあいうえおabc　ａｂｃ　abc ａｂｃ </var></p>

<p id="pparagraph35">変数の意味で使用し、イタリック体</p>

<hr />

<h3>address</h3>

<address>

<p>addressあいうえおabc　ａｂｃ　abc ａｂｃ</p>

</address>

<hr />

<h3>pre</h3>

<pre> preあいうえおabc　ａｂｃ　abc ａｂｃ </pre>
<hr />

<h3 class="emphasis_careful">tt</h3>

<p><tt> ttあいうえおabc　ａｂｃ　abc ａｂｃ </tt></p>

<p id="pparagraph36">非推奨　物理的フォントタグ　論理的タグ推奨　代替：code、samp、kbd　</p>

<hr />

<h3>code</h3>

<p>

<code></p>

<p> codeあいうえおabc　ａｂｃ　abc ａｂｃ </code>
</p>

<p id="pparagraph37">プログラムコードの意味で使用し、等幅フォント</p>

<hr />

<h3>kbd</h3>

<p><kbd> kbdあいうえおabc　ａｂｃ　abc ａｂｃ </kbd></p>

<p id="pparagraph38">ユーザが入力する文字列</p>

<hr />

<h3>samp</h3>

<p id="pparagraph39">sampあいうえおabc　ａｂｃ　abc ａｂｃ

サンプル</p>

<hr />

<h3>pre</h3>

<pre> preあいうえおabc　ａｂｃ　abc ａｂｃ </pre>
<hr />

<h3>big</h3>

<p><big> bigあいうえおabc　ａｂｃ　abc ａｂｃ </big></p>

<hr />

<h3>small</h3>

<p id="pparagraph40">smallあいうえおabc　ａｂｃ　abc ａｂｃ</p>

<hr />

<h3>sub</h3>

<p id="pparagraph41">1<sub> subあいうえおabc　ａｂｃ　abc ａｂｃ </sub></p>

<hr />

<h3>sup</h3>

<p id="pparagraph42">1<sup> supあいうえおabc　ａｂｃ　abc ａｂｃ </sup></p>

<hr />

<h3 class="emphasis_careful">s</h3>

<p><s> sあいうえおabc　ａｂｃ　abc ａｂｃ </s></p>

<p id="pparagraph43">抹消線

html+、html3.0、html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0、mozilla、msie または webexplorer 用のタグ</p>

<hr />

<h3 class="emphasis_careful">strike</h3>

<p><strike> strikeあいうえおabc　ａｂｃ　abc ａｂｃ </strike></p>

<p id="pparagraph44">非推奨　抹消線

は html3.2、html4.0、html4.01 transitional、html4.01 frameset、xhtml1.0、mozilla または msie 用のタグです。</p>

<hr />

<h3>del</h3>

<p><del datetime="1997-12-19T00:00:00-05:00"></p>

<p id="pparagraph45">the xmp element contains preformatted text in which markup other than an end tag is treated as literal text.</p>

<p></del></p>

<hr />

<h3>ins</h3>

<p id="pparagraph46">web標準で、</p>

<p><ins datetime="2003-10-18T22:22:08+09:00"></p>

<p id="pparagraph47">いや、web標準を目標に、</p>

<p></ins></p>

<p id="pparagraph48">ページを作っても、気づく人も少ない。web標準だから、画面が乱れないとも、バリデータを通ったから、完全だとも言えまい。web標準は、自慢することではない。</p>

<p id="pparagraph49">保守的な行動をする人がいて、革新的なことに興味をそそられる人もいて、そのどちらでもない人が、目立つことはない。

ただ、偏らないことは、簡単に出来はしない。</p>

</div>

</td>

<tr>

</table>

]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/26/604/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>試験書き込み</title>
		<link>http://tenman.info/labo/manual/2009/05/25/%e8%a9%a6%e9%a8%93%e6%9b%b8%e3%81%8d%e8%be%bc%e3%81%bf/</link>
		<comments>http://tenman.info/labo/manual/2009/05/25/%e8%a9%a6%e9%a8%93%e6%9b%b8%e3%81%8d%e8%be%bc%e3%81%bf/#comments</comments>
		<pubDate>Mon, 25 May 2009 01:05:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[test]]></category>
		<category><![CDATA[管理者]]></category>
		<category><![CDATA[全般]]></category>
		<category><![CDATA[設定]]></category>

		<guid isPermaLink="false">http://tenman.info/labo/manual/?p=535</guid>
		<description><![CDATA[test]]></description>
			<content:encoded><![CDATA[<a href="http://tenman.info/labo/manual/2009/05/21/メディアライブラリ/attachment/20090504130424/">test</a>

]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/25/%e8%a9%a6%e9%a8%93%e6%9b%b8%e3%81%8d%e8%be%bc%e3%81%bf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ひとつの投稿を、複数のページのように区切る</title>
		<link>http://tenman.info/labo/manual/2009/05/21/%e3%83%9a%e3%83%bc%e3%82%b8%e3%81%94%e3%81%a8%e3%81%ab%e5%88%86%e5%89%b2%e3%81%95%e3%82%8c%e3%81%9f%e3%83%9a%e3%83%bc%e3%82%b8%e3%82%92%e4%bd%9c%e3%82%8b%e3%80%82/</link>
		<comments>http://tenman.info/labo/manual/2009/05/21/%e3%83%9a%e3%83%bc%e3%82%b8%e3%81%94%e3%81%a8%e3%81%ab%e5%88%86%e5%89%b2%e3%81%95%e3%82%8c%e3%81%9f%e3%83%9a%e3%83%bc%e3%82%b8%e3%82%92%e4%bd%9c%e3%82%8b%e3%80%82/#comments</comments>
		<pubDate>Thu, 21 May 2009 02:57:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<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=404</guid>
		<description><![CDATA[この投稿では、長文の投稿や、閲覧ユーザにとって区切りのいいステップごとに、投稿を分割して表示するテクニックについて説明します。 投稿を複数のページに分割して表示する。 ホームページは、縦長の文章である事が多く、私たちは、 [...]]]></description>
			<content:encoded><![CDATA[

<p>この投稿では、長文の投稿や、閲覧ユーザにとって区切りのいいステップごとに、投稿を分割して表示するテクニックについて説明します。<br /></p>

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

<h2 id="h2-post-4041">投稿を複数のページに分割して表示する。</h2>

<p>ホームページは、縦長の文章である事が多く、私たちは、比較的頻繁にスクロールバーを利用します。</p>

<p>wordpressには、ページ分割機能がありますので、活用すると、スクロールの少ない、ユーザが見やすいページを作成する事ができます。</p>

<p>プラグインを導入する必要もありません。</p>

<p>その方法は、次のページで紹介します。</p>

]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/21/%e3%83%9a%e3%83%bc%e3%82%b8%e3%81%94%e3%81%a8%e3%81%ab%e5%88%86%e5%89%b2%e3%81%95%e3%82%8c%e3%81%9f%e3%83%9a%e3%83%bc%e3%82%b8%e3%82%92%e4%bd%9c%e3%82%8b%e3%80%82/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ピンバック</title>
		<link>http://tenman.info/labo/manual/2009/05/20/%e3%83%94%e3%83%b3%e3%83%90%e3%83%83%e3%82%af/</link>
		<comments>http://tenman.info/labo/manual/2009/05/20/%e3%83%94%e3%83%b3%e3%83%90%e3%83%83%e3%82%af/#comments</comments>
		<pubDate>Wed, 20 May 2009 09:35:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<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=370</guid>
		<description><![CDATA[この投稿では、wordpressのピンバックについて書いています。 ワードプレスは、自動トラックバック送信機能を持っていて、その事をピンバックといいます。 トラックバックは、他のブログに対してメッセージを残そうとする機能 [...]]]></description>
			<content:encoded><![CDATA[

<p>この投稿では、wordpressのピンバックについて書いています。<br />
ワードプレスは、自動トラックバック送信機能を持っていて、その事をピンバックといいます。<br />
トラックバックは、他のブログに対してメッセージを残そうとする機能なので、その働きを、理解したうえで<br />
使うほうが望ましいと思います。<br /></p>

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

<p>ピンバックは、投稿の中でリンクしたすべてのブログに、自動的に、「あなたのブログについて、言及しましたよ」と、トラックバックを送信する。</p>

<p>相手のブログが、トラックバックを受け付けていれば、自動的に書き込みます。</p>

<div class="tips">

<p>この設定は</p>

<p>管理画面の [ 設定 ] -- [ ディスカッション設定 ] -- [ 投稿のデフォルト設定 ]</p>

<p>にて、変更が可能です。</p>

</div>

<h3 id="h3-post-3701">トラックバックを知っていますか？</h3>

<p>トラックバックというのは、ブログが持っている連絡機能です。</p>

<p>とても、わかりにくい機能ですが、説明に挑戦します。</p>

<div style="margin-left:100px;">

<p>トラックバックは、電話のようなものです。短縮ダイヤルを押すと電話機が自動でダイヤルを回して、相手につないでくれるように、相手のブログにアクセスして、メッセージを送信しようとします。<br />
相手のブログが、そのメッセージを受け取る設定になっていると、自分のURLを相手のブログに記録して終了します。相手が、メッセージを拒否する設定になっているときには、そのまま終了します。</p>

</div>

<h3 id="h3-post-3702">トラックバックの弊害</h3>

<p>もちろん自分自身のブログも、そのような事を設定する項目があって、受信する設定にしていると、いろいろな人が、書き込んでいきます。<br />
実際に、ニンゲンが書き込んでいるならまだいいのですが、プログラムが書き込んだりするようなものもたくさんあります。<br />
このような受け取った人に何の意味もない書き込みを、<strong>スパムトラックバック</strong>といいます。<br />
便利な機能ですが、このようなあつかましい人に対する対処は、考えに入れる必要があります。<br /></p>

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

<p>また、そのような作業を、自分のブログの設定しだいでは、自分が意識していないのに、相手のブログに書き込もうとする行動を自動的に行っている場合もあるので、よく理解して設定が必要です。</p>

<div class="tips">

<p>自分がトラックバックの意味を理解できていないなら、</p>

<p>投稿中からリンクしたすべてのブログへの通知を試みる (投稿に時間がかかります)</p>

<p>という項目のチェックをはずしておく事を勧めます。</p>

<p>理解できたら、自由に設定しましょう。</p>

</div>

]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/20/%e3%83%94%e3%83%b3%e3%83%90%e3%83%83%e3%82%af/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>指定日（時刻）になったら、公開する</title>
		<link>http://tenman.info/labo/manual/2009/05/20/%e6%8c%87%e5%ae%9a%e6%97%a5%ef%bc%88%e6%99%82%e5%88%bb%ef%bc%89%e3%81%ab%e3%81%aa%e3%81%a3%e3%81%9f%e3%82%89%e3%80%81%e5%85%ac%e9%96%8b%e3%81%99%e3%82%8b/</link>
		<comments>http://tenman.info/labo/manual/2009/05/20/%e6%8c%87%e5%ae%9a%e6%97%a5%ef%bc%88%e6%99%82%e5%88%bb%ef%bc%89%e3%81%ab%e3%81%aa%e3%81%a3%e3%81%9f%e3%82%89%e3%80%81%e5%85%ac%e9%96%8b%e3%81%99%e3%82%8b/#comments</comments>
		<pubDate>Wed, 20 May 2009 09:18:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<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=360</guid>
		<description><![CDATA[この投稿では、指定日になったら投稿を公開する方法について説明をしています。 指定日になったら投稿を公開する方法について 公開タブ内の「公開状態」という項目の、編集リンクをクリック 公開したい時刻を選択してOKボタンを押す [...]]]></description>
			<content:encoded><![CDATA[

<p>この投稿では、指定日になったら投稿を公開する方法について説明をしています。<br /></p>

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

<h3 id="h3-post-3601">指定日になったら投稿を公開する方法について</h3>

<p>公開タブ内の「公開状態」という項目の、編集リンクをクリック<br /></p>

<img src="http://tenman.info/labo/manual/files/nexttime_post.png" alt="nexttime_post" title="nexttime_post" width="400" height="240" class="alignnone size-full wp-image-364" />

<p>公開したい時刻を選択してOKボタンを押す。</p>

<p>最後に「公開ボタン」を押します。（「保存」ではありません）</p>

<p>記事のステータスが「予約済み」になっていることを確認して完了</p>

]]></content:encoded>
			<wfw:commentRss>http://tenman.info/labo/manual/2009/05/20/%e6%8c%87%e5%ae%9a%e6%97%a5%ef%bc%88%e6%99%82%e5%88%bb%ef%bc%89%e3%81%ab%e3%81%aa%e3%81%a3%e3%81%9f%e3%82%89%e3%80%81%e5%85%ac%e9%96%8b%e3%81%99%e3%82%8b/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>
	</channel>
</rss>

