<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>ヘボプログラマの部屋 へのコメント</title>
	<atom:link href="http://www.mee77.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mee77.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 11 Feb 2012 06:17:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>WordPress3.3でカテゴリ名を入れたパーマリンクが動作しない→3.3.1で解消 - Digi-Cyber.netDigi-Cyber.net より WordPress3.3.1 差分情報 へのコメント</title>
		<link>http://www.mee77.com/2012/01/791/#comment-96</link>
		<dc:creator>WordPress3.3でカテゴリ名を入れたパーマリンクが動作しない→3.3.1で解消 - Digi-Cyber.netDigi-Cyber.net</dc:creator>
		<pubDate>Sat, 11 Feb 2012 06:17:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mee77.com/?p=791#comment-96</guid>
		<description>[...] 3.3.1 セキュリティおよびメンテナンスリリース &#124; WordPress.org 参考サイト : WordPress3.3.1 差分情報 参考サイト : [...]</description>
		<content:encoded><![CDATA[<p>[...] 3.3.1 セキュリティおよびメンテナンスリリース | WordPress.org 参考サイト : WordPress3.3.1 差分情報 参考サイト : [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>MEE@管理人 より パンくずリストを設置② へのコメント</title>
		<link>http://www.mee77.com/2011/02/201/#comment-68</link>
		<dc:creator>MEE@管理人</dc:creator>
		<pubDate>Mon, 08 Aug 2011 08:18:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mee77.com/?p=201#comment-68</guid>
		<description>おぉ！よかったです＾＾</description>
		<content:encoded><![CDATA[<p>おぉ！よかったです＾＾</p>
]]></content:encoded>
	</item>
	<item>
		<title>リンダ より パンくずリストを設置② へのコメント</title>
		<link>http://www.mee77.com/2011/02/201/#comment-67</link>
		<dc:creator>リンダ</dc:creator>
		<pubDate>Mon, 08 Aug 2011 02:36:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.mee77.com/?p=201#comment-67</guid>
		<description>MEEさま！！
できました！
ありがとうございます！！
何度もありがとうございました！
大感謝です！</description>
		<content:encoded><![CDATA[<p>MEEさま！！<br />
できました！<br />
ありがとうございます！！<br />
何度もありがとうございました！<br />
大感謝です！</p>
]]></content:encoded>
	</item>
	<item>
		<title>MEE@管理人 より パンくずリストを設置② へのコメント</title>
		<link>http://www.mee77.com/2011/02/201/#comment-66</link>
		<dc:creator>MEE@管理人</dc:creator>
		<pubDate>Mon, 08 Aug 2011 01:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mee77.com/?p=201#comment-66</guid>
		<description>やはり、get_the_category関数がうまく取れてないって事ですね。
記事のタイトルだけの表示で良いのであれば、

[php]
// 仮に↓のコメント化を外してこの文字が表示されたら取れてないので別途処理が必要
// echo &#039;カスタム投稿だよ&#039;;
[/php]


の部分を


[php]
$strtitle = the_title(&#039;&#039;,&#039;&#039;, FALSE) ;
// 記事タイトルが未記入な場合はidを表示させる
if ( !isset($strtitle) &#124;&#124; $strtitle == &quot;&quot; ) {
	$strtitle = $post-&gt;ID;
}
echo $strtitle;
[/php]


と変更すればタイトル部分のみの表示になると思います。

もしカスタム分類（独自に作ったカテゴリーやタグみたいなもの）まで
含めたパン屑にしようとすると、ちょっと自信が無いのですが、


[php]
$taxonomy_name = &#039;タクソノミー名&#039;;
$termsids = get_the_terms( $post-&gt;ID, $taxonomy_name );
if ( count($termsids) ) {
	foreach ( $termsids as $term ) {
		if ( $homeviewflag ) {
			echo $separator;
		} else {
			$homeviewflag = true;
		}
		$str_term = get_term_link( $term-&gt;slug, $taxonomy_name );
		if ( is_wp_error( $str_term ) ) {
			$str_term = &#039;&#039;;
		}
		?&gt;
		&lt;a href=&quot;&lt;?php echo $str_term; ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( sprintf( __( &quot;View all posts in %s&quot; ), $term-&gt;name ) ); ?&gt;&quot;&gt;
			&lt;?php echo esc_html($term-&gt;name); ?&gt;
		&lt;/a&gt;
		&lt;?php
	}
					
	if ( $homeviewflag ) {
		echo $separator;
	} else {
		$homeviewflag = true;
	}
					
	$strtitle = the_title(&#039;&#039;,&#039;&#039;, FALSE) ;
	// 記事タイトルが未記入な場合はidを表示させる
	if ( !isset($strtitle) &#124;&#124; $strtitle == &quot;&quot; ) {
		$strtitle = $post-&gt;ID;
	}
	echo $strtitle;
}
[/php]


・・・こういう感じ・・・かな？？？
（なんか、もっとうまい方法がある気もします＾＾；）

一行目の「$taxonomy_name = &#039;タクソノミー名&#039;」という行の
「タクソノミー名」はリンダさんが設定されたタクソノミー名
（register_taxonomy関数で追加された分類名称）
と同じにしてください。</description>
		<content:encoded><![CDATA[<p>やはり、get_the_category関数がうまく取れてないって事ですね。<br />
記事のタイトルだけの表示で良いのであれば、</p>
<pre class="brush: php; title: ; notranslate">
// 仮に↓のコメント化を外してこの文字が表示されたら取れてないので別途処理が必要
// echo 'カスタム投稿だよ';
</pre>
<p>の部分を</p>
<pre class="brush: php; title: ; notranslate">
$strtitle = the_title('','', FALSE) ;
// 記事タイトルが未記入な場合はidを表示させる
if ( !isset($strtitle) || $strtitle == &quot;&quot; ) {
	$strtitle = $post-&gt;ID;
}
echo $strtitle;
</pre>
<p>と変更すればタイトル部分のみの表示になると思います。</p>
<p>もしカスタム分類（独自に作ったカテゴリーやタグみたいなもの）まで<br />
含めたパン屑にしようとすると、ちょっと自信が無いのですが、</p>
<pre class="brush: php; title: ; notranslate">
$taxonomy_name = 'タクソノミー名';
$termsids = get_the_terms( $post-&gt;ID, $taxonomy_name );
if ( count($termsids) ) {
	foreach ( $termsids as $term ) {
		if ( $homeviewflag ) {
			echo $separator;
		} else {
			$homeviewflag = true;
		}
		$str_term = get_term_link( $term-&gt;slug, $taxonomy_name );
		if ( is_wp_error( $str_term ) ) {
			$str_term = '';
		}
		?&gt;
		&lt;a href=&quot;&lt;?php echo $str_term; ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( sprintf( __( &quot;View all posts in %s&quot; ), $term-&gt;name ) ); ?&gt;&quot;&gt;
			&lt;?php echo esc_html($term-&gt;name); ?&gt;
		&lt;/a&gt;
		&lt;?php
	}

	if ( $homeviewflag ) {
		echo $separator;
	} else {
		$homeviewflag = true;
	}

	$strtitle = the_title('','', FALSE) ;
	// 記事タイトルが未記入な場合はidを表示させる
	if ( !isset($strtitle) || $strtitle == &quot;&quot; ) {
		$strtitle = $post-&gt;ID;
	}
	echo $strtitle;
}
</pre>
<p>・・・こういう感じ・・・かな？？？<br />
（なんか、もっとうまい方法がある気もします＾＾；）</p>
<p>一行目の「$taxonomy_name = &#8216;タクソノミー名&#8217;」という行の<br />
「タクソノミー名」はリンダさんが設定されたタクソノミー名<br />
（register_taxonomy関数で追加された分類名称）<br />
と同じにしてください。</p>
]]></content:encoded>
	</item>
	<item>
		<title>リンダ より パンくずリストを設置② へのコメント</title>
		<link>http://www.mee77.com/2011/02/201/#comment-65</link>
		<dc:creator>リンダ</dc:creator>
		<pubDate>Sun, 07 Aug 2011 10:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.mee77.com/?p=201#comment-65</guid>
		<description>詳しくありがとうございます！
差し替えてみたところ、「Object id #3622」と一緒にタイトルが消えてしまいました。
どうしたらよいでしょうか？
ごめんなさい。</description>
		<content:encoded><![CDATA[<p>詳しくありがとうございます！<br />
差し替えてみたところ、「Object id #3622」と一緒にタイトルが消えてしまいました。<br />
どうしたらよいでしょうか？<br />
ごめんなさい。</p>
]]></content:encoded>
	</item>
	<item>
		<title>MEE@管理人 より パンくずリストを設置② へのコメント</title>
		<link>http://www.mee77.com/2011/02/201/#comment-64</link>
		<dc:creator>MEE@管理人</dc:creator>
		<pubDate>Fri, 05 Aug 2011 00:09:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.mee77.com/?p=201#comment-64</guid>
		<description>こちらこそ、判りにくい説明ですみません＾＾；

記事の77行目から88行目の部分の
&lt;pre&gt;
[php]
 $tempcatids = get_the_category();
 $tempcatid = $tempcatids[0];
 if ( $homeviewflag ) {
     echo $separator;
 }
echo get_category_parents( $tempcatid-&gt;cat_ID, TRUE, $separator );
$strtitle = the_title(&#039;&#039;,&#039;&#039;, FALSE) ;
// 記事タイトルが未記入な場合はidを表示させる
if ( !isset($strtitle) &#124;&#124; $strtitle == &quot;&quot; ) {
    $strtitle = $post-&gt;ID;
}
echo $strtitle
[/php]
&lt;/pre&gt;
という記述を
&lt;pre&gt;
[php]
$tempcatids = get_the_category();
if ( count($tempcatids) ) {
	$tempcatid = $tempcatids[0];
	if ( $homeviewflag ) {
		echo $separator;
	}
	echo get_category_parents( $tempcatid-&gt;cat_ID, TRUE, $separator );
	$strtitle = the_title(&#039;&#039;,&#039;&#039;, FALSE) ;
	// 記事タイトルが未記入な場合はidを表示させる
	if ( !isset($strtitle) &#124;&#124; $strtitle == &quot;&quot; ) {
		$strtitle = $post-&gt;ID;
	}
	echo $strtitle;
} else {
	// 仮に↓のコメント化を外してこの文字が表示されたら取れてないので別途処理が必要
	// echo &#039;カスタム投稿だよ&#039;;
}
[/php]
&lt;/pre&gt;
に差し替えてみてください。</description>
		<content:encoded><![CDATA[<p>こちらこそ、判りにくい説明ですみません＾＾；</p>
<p>記事の77行目から88行目の部分の</p>
<pre>
</pre>
<pre class="brush: php; title: ; notranslate">
 $tempcatids = get_the_category();
 $tempcatid = $tempcatids[0];
 if ( $homeviewflag ) {
     echo $separator;
 }
echo get_category_parents( $tempcatid-&gt;cat_ID, TRUE, $separator );
$strtitle = the_title('','', FALSE) ;
// 記事タイトルが未記入な場合はidを表示させる
if ( !isset($strtitle) || $strtitle == &quot;&quot; ) {
    $strtitle = $post-&gt;ID;
}
echo $strtitle
</pre>
<p>という記述を</p>
<pre>
</pre>
<pre class="brush: php; title: ; notranslate">
$tempcatids = get_the_category();
if ( count($tempcatids) ) {
	$tempcatid = $tempcatids[0];
	if ( $homeviewflag ) {
		echo $separator;
	}
	echo get_category_parents( $tempcatid-&gt;cat_ID, TRUE, $separator );
	$strtitle = the_title('','', FALSE) ;
	// 記事タイトルが未記入な場合はidを表示させる
	if ( !isset($strtitle) || $strtitle == &quot;&quot; ) {
		$strtitle = $post-&gt;ID;
	}
	echo $strtitle;
} else {
	// 仮に↓のコメント化を外してこの文字が表示されたら取れてないので別途処理が必要
	// echo 'カスタム投稿だよ';
}
</pre>
<p>に差し替えてみてください。</p>
]]></content:encoded>
	</item>
	<item>
		<title>リンダ より パンくずリストを設置② へのコメント</title>
		<link>http://www.mee77.com/2011/02/201/#comment-63</link>
		<dc:creator>リンダ</dc:creator>
		<pubDate>Thu, 04 Aug 2011 10:38:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.mee77.com/?p=201#comment-63</guid>
		<description>MEEさん、ありがとうございます！

すすみません！
ドコからドコまでと差し替えればよいのでしょうか？

初心者ですみません！！</description>
		<content:encoded><![CDATA[<p>MEEさん、ありがとうございます！</p>
<p>すすみません！<br />
ドコからドコまでと差し替えればよいのでしょうか？</p>
<p>初心者ですみません！！</p>
]]></content:encoded>
	</item>
	<item>
		<title>MEE@管理人 より パンくずリストを設置② へのコメント</title>
		<link>http://www.mee77.com/2011/02/201/#comment-62</link>
		<dc:creator>MEE@管理人</dc:creator>
		<pubDate>Tue, 02 Aug 2011 07:03:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.mee77.com/?p=201#comment-62</guid>
		<description>おぉ！初めてコメントされました！！
ありがとうございます＾＾

えっと、カスタム投稿タイプの場合、
もしかしたらシングル部分の処理が（is_single()）
get_the_category関数が取得できないかもしれません。
（ごめんなさい。実際に動かしてはいないので的外れかもしれませんが）
・・・以下のように変えたらどうでしょ？

[php]
$tempcatids = get_the_category();
if ( count($tempcatids) ) {
	$tempcatid = $tempcatids[0];
	if ( $homeviewflag ) {
		echo $separator;
	}
	echo get_category_parents( $tempcatid-&gt;cat_ID, TRUE, $separator );
	$strtitle = the_title(&#039;&#039;,&#039;&#039;, FALSE) ;
	// 記事タイトルが未記入な場合はidを表示させる
	if ( !isset($strtitle) &#124;&#124; $strtitle == &quot;&quot; ) {
		$strtitle = $post-&gt;ID;
	}
	echo $strtitle;
} else {
	// 仮に↓のコメント化を外してこの文字が表示されたら取れてないので別途処理が必要
	// echo &#039;カスタム投稿だよ&#039;;
}
[/php]
</description>
		<content:encoded><![CDATA[<p>おぉ！初めてコメントされました！！<br />
ありがとうございます＾＾</p>
<p>えっと、カスタム投稿タイプの場合、<br />
もしかしたらシングル部分の処理が（is_single()）<br />
get_the_category関数が取得できないかもしれません。<br />
（ごめんなさい。実際に動かしてはいないので的外れかもしれませんが）<br />
・・・以下のように変えたらどうでしょ？</p>
<pre class="brush: php; title: ; notranslate">
$tempcatids = get_the_category();
if ( count($tempcatids) ) {
	$tempcatid = $tempcatids[0];
	if ( $homeviewflag ) {
		echo $separator;
	}
	echo get_category_parents( $tempcatid-&gt;cat_ID, TRUE, $separator );
	$strtitle = the_title('','', FALSE) ;
	// 記事タイトルが未記入な場合はidを表示させる
	if ( !isset($strtitle) || $strtitle == &quot;&quot; ) {
		$strtitle = $post-&gt;ID;
	}
	echo $strtitle;
} else {
	// 仮に↓のコメント化を外してこの文字が表示されたら取れてないので別途処理が必要
	// echo 'カスタム投稿だよ';
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>リンダ より パンくずリストを設置② へのコメント</title>
		<link>http://www.mee77.com/2011/02/201/#comment-15</link>
		<dc:creator>リンダ</dc:creator>
		<pubDate>Sat, 30 Jul 2011 18:47:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.mee77.com/?p=201#comment-15</guid>
		<description>お世話になります。
使わせていただいています。

どうしたらよいかわからないので、教えていただきたいのですが、
カスタム投稿タイプの場合のパンくずに「Object id #3622」とかつくのですが
これを削除するにはどうしたらよいのでしょうか？

よろしくお願いいたします。</description>
		<content:encoded><![CDATA[<p>お世話になります。<br />
使わせていただいています。</p>
<p>どうしたらよいかわからないので、教えていただきたいのですが、<br />
カスタム投稿タイプの場合のパンくずに「Object id #3622」とかつくのですが<br />
これを削除するにはどうしたらよいのでしょうか？</p>
<p>よろしくお願いいたします。</p>
]]></content:encoded>
	</item>
	<item>
		<title>MEE@管理人 より 改行プラグインを入れてみる へのコメント</title>
		<link>http://www.mee77.com/2010/01/14/#comment-2</link>
		<dc:creator>MEE@管理人</dc:creator>
		<pubDate>Mon, 25 Jan 2010 16:13:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.mee77.com/?p=14#comment-2</guid>
		<description>初コメントが自分っていうのは悲しいが･･･


改行テストとして上げてみる。
ここでｂｒも</description>
		<content:encoded><![CDATA[<p>初コメントが自分っていうのは悲しいが･･･</p>
<p>改行テストとして上げてみる。<br />
ここでｂｒも</p>
]]></content:encoded>
	</item>
</channel>
</rss>

