Adding Technorati tags using Beta Labels
I'm pretty sure many people have attempted to create such a hack. Or maybe there's already several versions out there. This function basically uses your Blogger Labels, and create a link to Technorati. This saves you the time and effort to create each links one at a time.
Installation:
- Go to layout, and click on "Edit HTML"
- Tick "Expand Widget Templates"
- Now, the most difficult part is to find the following codes:
<div class='post-labels'>
Tip: search for "post-labels" using your browser's search feature (i.e. Ctrl+F)
<b:if cond='data:post.labels'>
<data:postLabelsLabel/>
<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 != "true"'>,</b:if>
</b:loop>
</b:if>
</div> - Replace with the following codes:
<div class='post-labels'>
Bold represent codes that were added while Italic represent an optional code, whether you want the labels or not.
<b:if cond='data:post.labels'>
<data:postLabelsLabel/>
<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 != "true"'>,</b:if>
</b:loop>
<br/>Technorati:
<b:loop values='data:post.labels' var='label'>
<a expr:href='"http://www.technorati.com/tag/"+data:label.name' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != "true"'>,</b:if>
</b:loop>
</b:if>
</div>