How to Make Breadcrumb Navigation on Blog
Breadcrum navigation is more aimed at a post, where the post is located, what tags and categories are, essentially this navigation tells visitors the category and tag of a post. Here's how to make breadcrumb navigation on the blog:
<b: if cond = 'data: blog.pageType == & quot; item & quot;'>Copy and place the above code just below the code <div class = 'post-header-line-1' /> replace " xxxxxxxx " with your URL then save the template, it will look like the example image below.
<a href='xxxxxxxxxx'> Home </a> »
<b: if cond = 'data: post.labels'>
<b: loop values = 'data: post.labels' var = 'label'>
<a expr:href='data:label.url' rel='tag'> <data: label.name/> </a>
<b: if cond = 'data: label.isLast! = & quot; true & quot;'>, </ b: if>
</ b: loop>
»
</ b: if>
<data: post.title />
</ b: if>
</ p>
0 Response to "How to Make Breadcrumb Navigation on Blog"
Post a Comment