<?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>Addicott Web &#187; breadcrumbs</title>
	<atom:link href="http://www.addicottweb.com/tag/breadcrumbs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.addicottweb.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 09 Jan 2012 18:28:46 +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>Ways to Create Breadcrumbs in WordPress</title>
		<link>http://www.addicottweb.com/2009/04/ways-of-creating-breadcrumbs-in-wordpress/</link>
		<comments>http://www.addicottweb.com/2009/04/ways-of-creating-breadcrumbs-in-wordpress/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 16:47:30 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[Freelance Business]]></category>
		<category><![CDATA[How To's]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[breadcrumbs]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[micro-content]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=1350</guid>
		<description><![CDATA[WordPress doesn&#8217;t have a default way of creating breadcrumbs, so when you&#8217;re designing a website in it, you have to include them on your own, either by adding some code to your theme&#8217;s files or by using a plugin. Here &#8230; <a href="http://www.addicottweb.com/2009/04/ways-of-creating-breadcrumbs-in-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a><div class="addthis_toolbox addthis_default_style " addthis:url='http://www.addicottweb.com/2009/04/ways-of-creating-breadcrumbs-in-wordpress/' addthis:title='Ways to Create Breadcrumbs in WordPress '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></description>
			<content:encoded><![CDATA[<p>WordPress doesn&#8217;t have a default way of creating breadcrumbs, so when you&#8217;re designing a website in it, you have to include them on your own, either by adding some code to your theme&#8217;s files or by using a plugin. Here are some ways to create breadcrumbs in WordPress for you to consider.</p>
<p><span id="more-1350"></span>(If you don&#8217;t know what breadcrumbs are and want to find out more about why and how to use them, read through my previous post on the subject, &#8220;<a href="http://www.addicottweb.com/2009/02/hansel-and-gretel-would-be-great-web-designers/">Hansel and Gretel Would be Great Web Designers</a>&#8220;.)</p>
<h2>By adding some code</h2>
<p>If you feel comfortable working with your WordPress theme&#8217;s files, here are 3 different ways to incorporate breadcrumbs into your WordPress website. Choose a method depending on what content you want to use them for on your website.</p>
<h3>Simple breadcrumbs for individual blog posts</h3>
<p><a title="Make an Apple.com Style Breadcrumb for Your WordPress Blog" href="http://wphacks.com/make-an-applecom-style-breadcrumb-for-your-wordpress-blog/" target="_blank">A post over at WP Hacks</a> details how to make simple breadcrumbs menus using basic PHP template tags. All you have to do is insert the following code into the single.php file wherever you want the breadcrumbs to appear:</p>
<pre>&lt;a href="&lt;?php bloginfo('home'); ?&gt;"&gt;Home&lt;/a&gt; &amp;raquo; &lt;?php the_category(); ?&gt; &amp;raquo; &lt;?php the_title(); ?&gt;</pre>
<p>You can style this with CSS to make it look a little nicer; my recommendation is that you wrap everything in a list like as follows, which will give you more options when it comes to styling:</p>
<pre>&lt;ul&gt;
&lt;li&gt;&lt;a href="&lt;?php bloginfo('home'); ?&gt;"&gt;Home&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;?php the_category('') ?&gt;&lt;/li&gt;
&lt;li&gt;&lt;?php the_title(); ?&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>I include the code here because this method is so simple to use. I&#8217;ve used it before, and it serves it purpose if you only want to include the breadcrumbs on your blog posts. The only drawback is that there is no flexibility to use it anywhere other than the posts on your WordPress website.</p>
<h3>Advanced breadcrumbs for both pages and posts</h3>
<p>When you want to add breadcrumbs to more than just blog posts, you need something a little more advanced in order to do that. Here are 2 different methods; both incorporate more advanced code to display breadcrumbs on both pages and posts:</p>
<ul>
<li><a href="http://www.catswhocode.com/blog/how-to-breadcrumb-function-for-wordpress" target="_blank">How to: Breadcrumb function for WordPress</a></li>
<li><a href="http://www.itsananderson.com/2008/12/wordpress-breadcrumbs/" target="_blank">WordPress Breadcrumbs</a></li>
</ul>
<p>With both methods, you just have to copy and paste some code into your functions.php file, and then insert some PHP code into your theme&#8217;s files wherever you want the breadcrumbs to appear.</p>
<p>I haven&#8217;t tried either one of these out myself, so if someone has used them, or tries them out on their website, leave a comment below and let me know your thoughts.</p>
<h2>By using a plugin</h2>
<p>If you&#8217;re not comfortable editing the code in your WordPress theme&#8217;s files, there are plugins available that give you the ability to style and manage them through the WordPress admin section, such as:</p>
<ul>
<li><a href="http://mtekk.weblogs.us/code/breadcrumb-navxt/" target="_blank">Breadcrumb NavXT</a></li>
<li><a href="http://yoast.com/wordpress/breadcrumbs/" target="_blank">Yoast Breadcrumbs</a></li>
<li><a href="http://justintadlock.com/archives/2009/04/05/breadcrumb-trail-wordpress-plugin" target="_blank">Breadcrumb Trail by Justin Tadlock</a></li>
</ul>
<p>I haven&#8217;t tried out any of these plugins myself, so I can&#8217;t speak from personal experience about how well they work or if one is preferable over another. If you have used one of them or have any feedback about these plugins (or others I didn&#8217;t mention), leave a comment about it below.</p>
<h2>Thoughts?</h2>
<p>Do you have a preferred way of creating breadcrumbs on your WordPress website? If so, share your thoughts with everyone by leaving a comment below!</p>
<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.addicottweb.com/2009/04/ways-of-creating-breadcrumbs-in-wordpress/' addthis:title='Ways to Create Breadcrumbs in WordPress '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/04/ways-of-creating-breadcrumbs-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hansel and Gretel Would be Great Web Designers</title>
		<link>http://www.addicottweb.com/2009/02/hansel-and-gretel-would-be-great-web-designers/</link>
		<comments>http://www.addicottweb.com/2009/02/hansel-and-gretel-would-be-great-web-designers/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 16:14:02 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[breadcrumbs]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[micro-content]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=681</guid>
		<description><![CDATA[In the Brothers Grimm fairytale, Hansel and Gretel get lost in the woods, yet are able to find their way home because they left a trail of breadcrumbs on the path.  Web designers use breadcrumbs for the same reasons &#8211; &#8230; <a href="http://www.addicottweb.com/2009/02/hansel-and-gretel-would-be-great-web-designers/">Continue reading <span class="meta-nav">&#8594;</span></a><div class="addthis_toolbox addthis_default_style " addthis:url='http://www.addicottweb.com/2009/02/hansel-and-gretel-would-be-great-web-designers/' addthis:title='Hansel and Gretel Would be Great Web Designers '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></description>
			<content:encoded><![CDATA[<p>In the Brothers Grimm fairytale, Hansel and Gretel get lost in the woods, yet are able to find their way home because they left a trail of breadcrumbs on the path.  Web designers use breadcrumbs for the same reasons &#8211; in fact, the fairy tale is where the term came from.<span id="more-681"></span></p>
<h2>What are breadcrumbs?</h2>
<p>Chances are you&#8217;ve seen breadcrumbs before, as many websites feature them in some form or another. But for those who are new to the concept, what exactly are breadcrumbs?</p>
<p>Simply put, they are another form of navigation that your visitors can use to find their way around your website when the main navigation doesn&#8217;t quite meet their needs. Breadcrumbs are almost always implemented the same way:</p>
<ul>
<li>Progressing from the highest level to the lowest, one step at a time</li>
<li>Starting with the home page and ending with the current page</li>
<li>Having a simple text link for each level, except for the current page</li>
<li>Separated by a one-character symbol between the levels, usually an &#8220;&gt;&#8221; or a &#8220;/&#8221;</li>
</ul>
<p>Of course, the ideas behind using them are slightly more complicated than that, which is what I want to talk about here. I&#8217;m going to go over the main usability benefits from using breadcrumbs before giving some pointers on how to use them in ways that will both benefit your visitors and SEO.</p>
<h2>Why should you use breadcrumbs?</h2>
<p>There are a few main reasons why breadcrumbs should be used on a website:</p>
<ul>
<li><strong>Pinpoint your location </strong>- Like the large maps at the mall, breadcrumbs show people where they in relation to the rest of your website. They can also show people where the page that they&#8217;re looking at is relative to higher-level content as well.</li>
<li><strong>Help rescue those who get lost</strong> &#8211; Most people tend to ignore breadcrumbs until they get to a page that isn&#8217;t quite what they were looking for, and want to find their way back up to a more familiar page on the website. Breadcrumbs are just another way that you can help your visitors do that, especially if they parachuted into a very specific but inappropriate place on your website and want to get their bearings.</li>
<li><strong>Open up the information hierarchy</strong> &#8211; Breadcrumbs allow your visitors to jump more than just one level of content at a time because by nature they show the exact pages that led to the page that they&#8217;re currently on. (Note: this is different from showing them the exact pages that got them to where they currently are.) This can give your visitors a better sense of how the website is organized.</li>
<li><strong>People are familiar with them</strong> &#8211; Breadcrumbs are common enough now that most people are somewhat familiar with them. Because they are one of those little touches, your visitors might not notice if they are there, but they also might miss them if they&#8217;re not there.</li>
<li><strong>Consistency leads to usability</strong> &#8211; Breadcrumb trails are for the most part styled the same way, making it easy for people to immediately know how to use it when they see it. Just remember to keep your breadcrumbs styled according to common conventions so that you don&#8217;t leave people guessing about what those links are.</li>
</ul>
<h2>How to implement them correctly</h2>
<p>Now that you&#8217;ve made the decision to use breadcrumbs on your website, you need to make sure that they&#8217;re well-designed in order to have an impact on your website&#8217;s usability. Here are some tips for using them:</p>
<ul>
<li><strong>Proper placement is key</strong> &#8211; My personal belief is that breadcrumbs should go in your main content area, directly above the main title of the page. Of course you don&#8217;t want them to be so obtrusive that they take up a lot of room there, but you also want to make sure that they&#8217;re easy to find. Putting them in a spot that will at least visually register with your visitors is important, because then if they go looking for the breadcrumbs, they know where to find them.</li>
<li><strong>Style them appropriately</strong> &#8211; As I&#8217;ve <a href="http://www.addicottweb.com/2008/12/web-design-tip-styling-text-links/">written about previously</a>, how you style your text links is important from a usability perspective because it helps people know what are the links and what aren&#8217;t. When I&#8217;m styling my breadcrumbs, I like to make the links underlined and colored differently from the last breadcrumb level, which is the page the visitor is on.  I&#8217;ve seen breadcrumbs on many websites where all the text, links included, looks the same, and I can never understand why someone would choose to style it that way.</li>
<li><strong>Show site hierarchy, not user history</strong> &#8211; Breadcrumbs are not meant to be a trail of how the user got to that page, but rather should be thought of more as beacons that pinpoint the page location relative to the rest of the website&#8217;s content. The user can just as easily click their web browser&#8217;s &#8220;Back&#8221; button to return to where they came from &#8211; they don&#8217;t need breadcrumbs to do that.</li>
<li><strong>Focus on how they&#8217;re written for additional SEO benefits</strong> &#8211; If you&#8217;re focusing on <a href="http://www.addicottweb.com/2009/01/simple-steps-to-bolster-seo-on-your-website/">ways to incorporate SEO</a> into your website, breadcrumbs are another great opportunity to mix in some of those keywords you&#8217;re optimizing for. Just make sure that your breadcrumb links provide enough detail about what the pages are about, without being overly lengthy. I generally try to keep my breadcrumb links to within 1-3 words, at most.</li>
</ul>
<h2>Breadcrumbs can&#8217;t solve all your usability problems</h2>
<p>It&#8217;s not absolutely essential that a website incorporate breadcrumbs, even though if they&#8217;re done right, they can enhance the overall usability of your website. But if you are going to use them, there&#8217;s one catch, and it&#8217;s a big one.</p>
<p><strong>They&#8217;ll only work if the overall content and structure of your website make sense in the first place.</strong></p>
<p>If people can&#8217;t find what they&#8217;re looking for on your website to begin with, having breadcrumbs on your content pages isn&#8217;t really going to help them very much. Chances are, if your navigation is that bad, it will already have made such a poor impression of your website that the visitor won&#8217;t even have made it that far anyways.</p>
<p>As a web designer, your first priorities have to be creating a site hierarchy that makes sense and then constructing a navigation to make the content easy to find within that hierarchy. That being said though, don&#8217;t just throw in the breadcrumbs as an afterthought. Badly implemented breadcrumbs might do more harm than good, so if you want to incorporate them, spend at least some time making sure they&#8217;re implemented properly.</p>
<h2>Thoughts?</h2>
<p>If you don&#8217;t already have breadcrumbs on your website, do you plan to incorporate them? If you already have them, what do they look like, and what have you found that works or doesn&#8217;t work? Share your thoughts about these questions and more by filling out the comment form below!</p>
<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.addicottweb.com/2009/02/hansel-and-gretel-would-be-great-web-designers/' addthis:title='Hansel and Gretel Would be Great Web Designers '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/02/hansel-and-gretel-would-be-great-web-designers/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Obama Renovates Whitehouse.gov</title>
		<link>http://www.addicottweb.com/2009/01/obama-renovates-whitehousegov/</link>
		<comments>http://www.addicottweb.com/2009/01/obama-renovates-whitehousegov/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 20:28:05 +0000</pubDate>
		<dc:creator>Addicott Web</dc:creator>
				<category><![CDATA[Design Galleries]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[breadcrumbs]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.addicottweb.com/?p=545</guid>
		<description><![CDATA[There are many things that get handed over to the incoming president at noon every Inauguration Day: the keys to Air Force One, the Oval Office, and&#8230; the password to Whitehouse.gov? Yes, you read that correctly. Barack Obama ran for &#8230; <a href="http://www.addicottweb.com/2009/01/obama-renovates-whitehousegov/">Continue reading <span class="meta-nav">&#8594;</span></a><div class="addthis_toolbox addthis_default_style " addthis:url='http://www.addicottweb.com/2009/01/obama-renovates-whitehousegov/' addthis:title='Obama Renovates Whitehouse.gov '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></description>
			<content:encoded><![CDATA[<p>There are many things that get handed over to the incoming president at noon every Inauguration Day: the keys to Air Force One, the Oval Office, and&#8230; the password to <a href="http://www.whitehouse.gov" target="_blank">Whitehouse.gov</a>?<span id="more-545"></span></p>
<p>Yes, you read that correctly.</p>
<p>Barack Obama ran for office using arguably the most technologically-committed campaign ever. The new look of the White House website is no surprise when you keep that in mind &#8211; although I must say that I actually was a bit surprised to hear about it. Considering everything else that is being talked about this inauguration day, honestly, who was even thinking about the White House website?</p>
<p><a title="Visit the Obama administration's new White House website" href="http://www.whitehouse.gov" target="_blank"><img class="screenshot" src="http://www.addicottweb.com/images/blog_postings/whitehouse_website_jan_2009.gif" border="0" alt="The Obama Administration's new White House website, January 2009" /></a></p>
<h2>Thoughts on the new design</h2>
<p>The new look of the White House website picks up where his campaign and transition websites left off. In fact, if you go to Change.gov now, there is a note saying that the &#8220;transition has ended and the new administration has begun. Please join President Barack Obama at Whitehouse.gov&#8221; &#8211; so you do get the sense of continuity from one phase of his election and presidency to the next.</p>
<p>Macon Phillips, the Director of New Media for the White House and a contributor to the White House blog, <a href="http://www.whitehouse.gov/blog/change_has_come_to_whitehouse-gov/" target="_blank">writes that</a> the new website is &#8220;just the beginning of the new administration&#8217;s efforts to expand and deepen the online engagement&#8221; that many Americans used to help play a role in the election.</p>
<p>I think what I&#8217;m most impressed with the most is how Obama&#8217;s calls for transparency and communication in government were carried over to the website. What those two things translate most readily into in web design terms is what I talk about all the time &#8211; a commitment to site usability.</p>
<h3>What&#8217;s done well</h3>
<p>What are some features on the new website that make it very usable and that I really like?</p>
<ul>
<li><strong>Intuitive navigation</strong> &#8211; The top navigational bar has only a few simple choices, and the drop-downs that appear when you hover over a link provide links to all sorts of information about his agenda, the administration, the history of the White House, the government, and how to stay informed. They&#8217;re simple to use and look great &#8211; what more could you ask form.</li>
<li><strong>E-mail updates</strong> &#8211; This is a standard feature on many websites, but this is downright genius the way it&#8217;s incorporates here &#8211; not to mention groundbreaking. But it comes as now surprise to see the administration use this, considering Obama&#8217;s use of other technologies during his campaign, such as text messaging.</li>
<li><strong>Functional footer</strong> &#8211; This is also a commonly found design element nowadays, but again, it&#8217;s use here really fits well with the openness and accessibility that the website and administration are both trying to convey. It makes it even easier for people to find the information that they&#8217;re looking if they don&#8217;t want to use the drop-down menus at the top &#8211; again, a hallmark of usability.</li>
</ul>
<p>Of course, the snazzy Web 2.0 design really does wonders in tying eveything together, and the web designer in me can&#8217;t help but wonder if it&#8217;s running on WordPress!</p>
<h3>What could be fixed</h3>
<p>I know I&#8217;m probably being a bit too nit-picky here, but there are a few small touches that I would have done differently:</p>
<ul>
<li><strong>Styling the text links</strong> &#8211; The text links are the same color as the text, and aren&#8217;t underlined either, so it&#8217;s hard to tell what is a link and what isn&#8217;t. I would have done this a bit differently, since styling them properly helps with both usability and accessibility &#8211; something I detailed in <a href="http://www.addicottweb.com/2008/12/web-design-tip-styling-text-links/">another post</a> I wrote on the subject.</li>
<li><strong>Page title tags</strong> &#8211; The page titles on pages throughout the website are very basic: &#8220;Contact Us&#8221; is all it says for the &#8220;Contact Us&#8221; page, for example. I&#8217;m sure that the White House website doesn&#8217;t have search engine optimization forefront on their mind, but it wouldn&#8217;t hurt to include some more information in them. People who use tabbed browsers would be appreciative of that!</li>
<li><strong>Breadcrumbs</strong> &#8211; Once you get into the sub-pages on the website, there is a well-styled breadcrumb bar that appears at the top of the footer area. I just wish that they would have done the same at the top of the page where it would be more visible.</li>
<li><strong>Form fields</strong> &#8211; Eye-tracking studies have shown that it&#8217;s best to put the labels on top of input fields on website forms, but the Contact Form on the website has them reversed. I would switch this up and it will look a lot better.</li>
</ul>
<h2>It&#8217;s a great start</h2>
<p>Overall though, this is a great website that I&#8217;m very impressed with. I&#8217;m curious to see how the website grows and changes over time as more content is posted to it &#8211; pending legislation and executive orders, for example &#8211; and new features come online &#8211; such as the RSS feeds, which aren&#8217;t quite ready yet.</p>
<p>From a marketing angle, I think it very accurately reflects the message that the new administration wishes to convey about itself. And as I&#8217;ve written elsewhere, if the design of a website is able to help convey the right message about an organization, then that truly a great website.</p>
<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.addicottweb.com/2009/01/obama-renovates-whitehousegov/' addthis:title='Obama Renovates Whitehouse.gov '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.addicottweb.com/2009/01/obama-renovates-whitehousegov/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

