NewsFeaturesDownloadsDevelopmentSupportAbout Us
Plugin technorati

Plugin technorati

From LifeType Wiki


Name: technorati

Latest version: 20070226

Download link: http://prdownloads.sourceforge.net/lifetype/1.2_technorati.zip?download

License: GPL

Author: augur / www.augurnovo.com

Description

Add technorati tags with the aid of a seperate "technoratiTags" field while posting.

Just add your tags seperated by commas. The list tags can be placed anywhere on the post template.

e.g. "tag1, tag2, tag with space 3, tag4"

Configuration

enable the plugin through the manage>posts>technorati page. The API Key field can be ignored for now. It is meant for future functionality.

add the following in "post.template": (preferably at the end of the post)

{if $technorati && $technorati->isEnabled()}
{assign var="tagString" value=$technorati->getTags($post)}
{foreach name=tags from=$tagString item=tagLink}
  {if $smarty.foreach.tags.first} technorati tags: {/if}
  {$tagLink}         
  {if !$smarty.foreach.tags.last}, {/if}
{/foreach}{/if}

Notes

currently only locale_UK is supported. please feel free to add more locales if needed.