Coding breadcrumbs manually
-
I have a super static site - whats the best way to hardcode (manually if possible) the breadcrumbs i.e. the correct mark up etc?
Not got a super large site (about 60 pages) and find people land on deep pages and seem to bounce outta there, working on things to turn this around etc but would like to add breadcrumbs as I think some people would probably go up a level in our site to find what they are looking for.
-
What type of semantic markup are you planning on using? Here is the code for if you're using schema.org:
- <body< span="">itemscope itemtype="http://schema.org/WebPage"></body<>
- ...
- <div< span="">itemprop="breadcrumb"></div<>
- <a< span="">href="category/books.html">Books ></a<>
- <a< span="">href="category/books-literature.html">Literature & Fiction ></a<>
- <a< span="">href="category/books-classics">Classics</a<>
More info here:
-
Thanks Takeshi, Thats the one I want (do you read minds?!) I'll give the link a good read
