<?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/"
xmlns:media="http://search.yahoo.com/mrss/"
> <channel><title>Comments on: Breadcrumbs in WordPress</title> <atom:link href="http://yoast.com/wordpress-breadcrumbs/feed/" rel="self" type="application/rss+xml" /><link>http://yoast.com/wordpress-breadcrumbs/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=wordpress-breadcrumbs</link> <description>Tweaking Websites</description> <lastBuildDate>Thu, 18 Mar 2010 22:54:36 +0000</lastBuildDate> <generator>http://wordpress.org/?v=</generator> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>By: Pande</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-75405</link> <dc:creator>Pande</dc:creator> <pubDate>Mon, 30 Nov 2009 14:52:18 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-75405</guid> <description>Hi!
Great plugin!
Most of my posts are in child categories: is there a way to show parent and child in the breadcrumb?
Thank you?!</description> <content:encoded><![CDATA[<p>Hi!<br
/> Great plugin!<br
/> Most of my posts are in child categories: is there a way to show parent and child in the breadcrumb?<br
/> Thank you?!</p> ]]></content:encoded> </item> <item><title>By: Anthony</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-67562</link> <dc:creator>Anthony</dc:creator> <pubDate>Sat, 21 Mar 2009 00:36:43 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-67562</guid> <description>I just installed this onto some of my wordpress blogs, but it displays the same name for each different post. Check below on left hand navbar to see what i mean...</description> <content:encoded><![CDATA[<p>I just installed this onto some of my wordpress blogs, but it displays the same name for each different post. Check below on left hand navbar to see what i mean...</p> ]]></content:encoded> </item> <item><title>By: Aldo Latino</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-67406</link> <dc:creator>Aldo Latino</dc:creator> <pubDate>Wed, 18 Mar 2009 18:07:46 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-67406</guid> <description>@ JoostAbout the issue noticed by Avaz Ibragimov in &lt;a href=&quot;http://yoast.com/wordpress-breadcrumbs/#comment-36086&quot; rel=&quot;nofollow&quot;&gt;this comment&lt;/a&gt;, in two lines (#74 and #98) I changed &quot;htmlentities&quot; into &quot;stripslashes&quot; and it works: all my HTML special chars are now displayed correctly.I&#039;d like a confirmation from you, if it&#039;s the right way. :)
Thank you for this useful plugin, which I&#039;ll add into a new theme I&#039;m developing.</description> <content:encoded><![CDATA[<p>@ Joost</p><p>About the issue noticed by Avaz Ibragimov in <a
href="http://yoast.com/wordpress-breadcrumbs/#comment-36086" rel="nofollow">this comment</a>, in two lines (#74 and #98) I changed "htmlentities" into "stripslashes" and it works: all my HTML special chars are now displayed correctly.</p><p>I'd like a confirmation from you, if it's the right way. :)<br
/> Thank you for this useful plugin, which I'll add into a new theme I'm developing.</p> ]]></content:encoded> </item> <item><title>By: Scott Clark</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-67321</link> <dc:creator>Scott Clark</dc:creator> <pubDate>Tue, 17 Mar 2009 13:42:54 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-67321</guid> <description>A huge help.  Found the error - the thesis hook I was using referred to an area that was not visible, so my breadcrumbs simply didn&#039;t display.  All fixed!</description> <content:encoded><![CDATA[<p>A huge help.  Found the error - the thesis hook I was using referred to an area that was not visible, so my breadcrumbs simply didn't display.  All fixed!</p> ]]></content:encoded> </item> <item><title>By: Damon Gudaitis</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-67304</link> <dc:creator>Damon Gudaitis</dc:creator> <pubDate>Tue, 17 Mar 2009 03:16:26 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-67304</guid> <description>The code inside the echo statement above got erased. I enclosed the breadcrumbs in div tags for styling purposes, but it&#039;s not necessary to include the echo statements.</description> <content:encoded><![CDATA[<p>The code inside the echo statement above got erased. I enclosed the breadcrumbs in div tags for styling purposes, but it's not necessary to include the echo statements.</p> ]]></content:encoded> </item> <item><title>By: Damon Gudaitis</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-67303</link> <dc:creator>Damon Gudaitis</dc:creator> <pubDate>Tue, 17 Mar 2009 03:13:58 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-67303</guid> <description>This works for me....//output breadcrumbs
function thesis_yoast_breadcrumbs() {
echo &#039;&#039;;
if ( function_exists(&#039;yoast_breadcrumb&#039;) ) {
yoast_breadcrumb();
}
echo &#039;&#039;;
}add_action(&#039;thesis_hook_before_content&#039;, &#039;thesis_yoast_breadcrumbs&#039;);
//end breadcrumbs</description> <content:encoded><![CDATA[<p>This works for me....</p><p>//output breadcrumbs<br
/> function thesis_yoast_breadcrumbs() {<br
/> echo '';<br
/> if ( function_exists('yoast_breadcrumb') ) {<br
/> yoast_breadcrumb();<br
/> }<br
/> echo '';<br
/> }</p><p>add_action('thesis_hook_before_content', 'thesis_yoast_breadcrumbs');<br
/> //end breadcrumbs</p> ]]></content:encoded> </item> <item><title>By: Scott Clark</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-67286</link> <dc:creator>Scott Clark</dc:creator> <pubDate>Mon, 16 Mar 2009 21:06:58 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-67286</guid> <description>I&#039;m trying to integrate your breadcrumbs with the thesis theme as a hook function.  Have you (or anyone) done this?  I have not succeded yet..in my custom_functions.php file&lt;code&gt;function godobreadcrumbs(){
if ( function_exists(&#039;yoast_breadcrumb&#039;) ) {
yoast_breadcrumb(&#039;&#039;,&#039;&#039;);
}
}
add_action(&#039;thesis_hook_after_content_box&#039;,&#039;godobreadcrumbs&#039;);
&lt;/code&gt;...doesn&#039;t work.</description> <content:encoded><![CDATA[<p>I'm trying to integrate your breadcrumbs with the thesis theme as a hook function.  Have you (or anyone) done this?  I have not succeded yet..</p><p>in my custom_functions.php file</p><p><code></p><p>function godobreadcrumbs(){<br
/> if ( function_exists('yoast_breadcrumb') ) {<br
/> yoast_breadcrumb('','');<br
/> }<br
/> }<br
/> add_action('thesis_hook_after_content_box','godobreadcrumbs');<br
/> </code></p><p>...doesn't work.</p> ]]></content:encoded> </item> <item><title>By: Breadcrumbs &#124; Wizard's Blog</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-38101</link> <dc:creator>Breadcrumbs &#124; Wizard's Blog</dc:creator> <pubDate>Tue, 18 Nov 2008 18:15:19 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-38101</guid> <description>[...] Breadcrumbs in WordPress [...]</description> <content:encoded><![CDATA[<p>[...] Breadcrumbs in WordPress [...]</p> ]]></content:encoded> </item> <item><title>By: Boris Mahovac - Email Marketing Coach</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-37915</link> <dc:creator>Boris Mahovac - Email Marketing Coach</dc:creator> <pubDate>Mon, 10 Nov 2008 19:19:57 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-37915</guid> <description>This &lt;a href=&quot;http://tinyurl.com/wpremix&quot; title=&quot;wpRemix.com&quot; rel=&quot;nofollow&quot;&gt;premium WordPress theme called WP Remix&lt;/a&gt; has this feature built in. Check it out at wpRemix.com</description> <content:encoded><![CDATA[<p>This <a
href="http://tinyurl.com/wpremix" title="wpRemix.com" rel="nofollow">premium WordPress theme called WP Remix</a> has this feature built in. Check it out at wpRemix.com</p> ]]></content:encoded> </item> <item><title>By: Kevin Kirkpatrick - Making Money With SEO &#187; Blog Archive Silos &#38; Themes - SEO Site Structure - Kevin Kirkpatrick</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-37838</link> <dc:creator>Kevin Kirkpatrick - Making Money With SEO &#187; Blog Archive Silos &#38; Themes - SEO Site Structure - Kevin Kirkpatrick</dc:creator> <pubDate>Fri, 07 Nov 2008 06:29:06 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-37838</guid> <description>[...] Breadcrumbs in WordPress [...]</description> <content:encoded><![CDATA[<p>[...] Breadcrumbs in WordPress [...]</p> ]]></content:encoded> </item> <item><title>By: Mark</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-37665</link> <dc:creator>Mark</dc:creator> <pubDate>Thu, 30 Oct 2008 11:37:52 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-37665</guid> <description>Hi there Joost!Cracking plugin and great site, going to have a good read over ALL of it!One thing I have noticed about the plugin is on a 404 page the current title becomes the latest post.Have you noticed this? Is there an easy fix or setting that needs changing?Thanks for any help in advance!Mark</description> <content:encoded><![CDATA[<p>Hi there Joost!</p><p>Cracking plugin and great site, going to have a good read over ALL of it!</p><p>One thing I have noticed about the plugin is on a 404 page the current title becomes the latest post.</p><p>Have you noticed this? Is there an easy fix or setting that needs changing?</p><p>Thanks for any help in advance!</p><p>Mark</p> ]]></content:encoded> </item> <item><title>By: Dan</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-37124</link> <dc:creator>Dan</dc:creator> <pubDate>Wed, 08 Oct 2008 21:28:19 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-37124</guid> <description>Hey there -great article on SEO, got to the breadcrumb bit and although it works for first post all the other posts disappeared and I am getting this error message -Fatal error: Cannot redeclare bold_or_not() (previously declared in /home/~/plugins/yoast-breadcrumbs/yoast-breadcrumbs.php:122) in /home/~/plugins/yoast-breadcrumbs/yoast-breadcrumbs.php on line 122please help me!  have a few posts with multiple categories and am unsure what you mean by &quot;adapt page.php &amp; single.php&quot;  I pasted the code in to thosehave removed code for now...thanks for your time and such an awesome seo guide :)</description> <content:encoded><![CDATA[<p>Hey there -</p><p>great article on SEO, got to the breadcrumb bit and although it works for first post all the other posts disappeared and I am getting this error message -</p><p>Fatal error: Cannot redeclare bold_or_not() (previously declared in /home/~/plugins/yoast-breadcrumbs/yoast-breadcrumbs.php:122) in /home/~/plugins/yoast-breadcrumbs/yoast-breadcrumbs.php on line 122</p><p>please help me!  have a few posts with multiple categories and am unsure what you mean by "adapt page.php &amp; single.php"  I pasted the code in to those</p><p>have removed code for now...</p><p>thanks for your time and such an awesome seo guide :)</p> ]]></content:encoded> </item> <item><title>By: Paul Marion</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-36643</link> <dc:creator>Paul Marion</dc:creator> <pubDate>Thu, 11 Sep 2008 12:00:20 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-36643</guid> <description>Hey Joost, thx a million for the plugin. Installation was a breeze. Cheers.
Paul</description> <content:encoded><![CDATA[<p>Hey Joost, thx a million for the plugin. Installation was a breeze. Cheers.<br
/> Paul</p> ]]></content:encoded> </item> <item><title>By: leland</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-36488</link> <dc:creator>leland</dc:creator> <pubDate>Sat, 06 Sep 2008 11:24:06 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-36488</guid> <description>I really love the plugin.  Good Job.  Quick request/comment - is there any way I can exclude a category from breadcrumbs?  I have a &quot;featured&quot; category that keeps showing up for several articles on my site in the breadcrumbs but I use it only for a slideshow on the homepage.  I would like to exclude this category from the breadcrumbs as the article also belongs to other categories.  Thank.</description> <content:encoded><![CDATA[<p>I really love the plugin.  Good Job.  Quick request/comment - is there any way I can exclude a category from breadcrumbs?  I have a "featured" category that keeps showing up for several articles on my site in the breadcrumbs but I use it only for a slideshow on the homepage.  I would like to exclude this category from the breadcrumbs as the article also belongs to other categories.  Thank.</p> ]]></content:encoded> </item> <item><title>By: Joost de Valk</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-36181</link> <dc:creator>Joost de Valk</dc:creator> <pubDate>Sun, 24 Aug 2008 08:08:53 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-36181</guid> <description>@Bertrand: no that&#039;s quite impossible to do nicely.@Boris: I&#039;ll check it out!</description> <content:encoded><![CDATA[<p>@Bertrand: no that's quite impossible to do nicely.</p><p>@Boris: I'll check it out!</p> ]]></content:encoded> </item> <item><title>By: Boris Mahovac - Your Ezine Coach</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-36178</link> <dc:creator>Boris Mahovac - Your Ezine Coach</dc:creator> <pubDate>Sun, 24 Aug 2008 00:07:24 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-36178</guid> <description>This &lt;a href=&quot;http://wpremix.com/&quot; title=&quot;WP Remix&quot; rel=&quot;nofollow&quot;&gt; premium WP theme by R.Bhavesh&lt;/a&gt; has this feature built in.</description> <content:encoded><![CDATA[<p>This <a
href="http://wpremix.com/" title="WP Remix" rel="nofollow"> premium WP theme by R.Bhavesh</a> has this feature built in.</p> ]]></content:encoded> </item> <item><title>By: A Review of the SEO Friendly Thesis Wordpress Theme - Sugarrae</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-36176</link> <dc:creator>A Review of the SEO Friendly Thesis Wordpress Theme - Sugarrae</dc:creator> <pubDate>Sat, 23 Aug 2008 18:34:42 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-36176</guid> <description>[...] Wordpress breadcrumbs [...]</description> <content:encoded><![CDATA[<p>[...] Wordpress breadcrumbs [...]</p> ]]></content:encoded> </item> <item><title>By: Bertrand</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-36162</link> <dc:creator>Bertrand</dc:creator> <pubDate>Sat, 23 Aug 2008 01:52:04 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-36162</guid> <description>Very useful plugin. Thx !Too bad that when a post is in two category, only the first one appears. Perhaps you could add that, as an option, no ?</description> <content:encoded><![CDATA[<p>Very useful plugin. Thx !</p><p>Too bad that when a post is in two category, only the first one appears. Perhaps you could add that, as an option, no ?</p> ]]></content:encoded> </item> <item><title>By: Joost de Valk</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-36130</link> <dc:creator>Joost de Valk</dc:creator> <pubDate>Fri, 22 Aug 2008 07:20:54 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-36130</guid> <description>@Mark: good call, will do that.
@Justin: it will pick one :)
@Gab: glad you like it :)</description> <content:encoded><![CDATA[<p>@Mark: good call, will do that.<br
/> @Justin: it will pick one :)<br
/> @Gab: glad you like it :)</p> ]]></content:encoded> </item> <item><title>By: Gab Goldenberg</title><link>http://yoast.com/wordpress-breadcrumbs/#comment-36127</link> <dc:creator>Gab Goldenberg</dc:creator> <pubDate>Fri, 22 Aug 2008 05:07:51 +0000</pubDate> <guid
isPermaLink="false">http://yoast.com/?p=947#comment-36127</guid> <description>Heh, remember reading this tip in the SEO Book way back. Had &#039;em custom coded into my theme about a year ago, n glad I did. This is gonna be wonderful for other themes though :D.</description> <content:encoded><![CDATA[<p>Heh, remember reading this tip in the SEO Book way back. Had 'em custom coded into my theme about a year ago, n glad I did. This is gonna be wonderful for other themes though :D.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Database Caching 1/6 queries in 0.006 seconds using apc
Content Delivery Network via netdna.yoast.com

Served from: yoast.com @ 2010-03-19 05:20:53 -->