NP_TechnoratiTags v0.9.0
New major release:
- allow per blog tag cloud - current, all, by blogid
- show tag count
- option for tag search title
- outbound tag support to del.icio.us; 1) add dcloud skin/templete control to point to del.icio.us instead of Technorati 2) tag a post to del.icio.us (each user need to provide login/password)
click here to download
p.s. del.icio.us support is using code from http://www.ejeliot.com/pages/php-delicious (Thanks, Ed!)
- allow per blog tag cloud - current, all, by blogid
- show tag count
- option for tag search title
- outbound tag support to del.icio.us; 1) add dcloud skin/templete control to point to del.icio.us instead of Technorati 2) tag a post to del.icio.us (each user need to provide login/password)
click here to download
p.s. del.icio.us support is using code from http://www.ejeliot.com/pages/php-delicious (Thanks, Ed!)
To Make createItemLink() Work....
Just saw some code from NP_Trackback that need to make createItemLink() to work... I ran into some problem in the past that have to resolve into manually construct the item link. In fact, what need to do is to set $CONF['ItemURL'] using the following code:
global $manager, $CONF; // need to reset the ItemURL so createItemLink work properly $blog =& $manager->getBlog(getBlogIDFromItemID($itemid)); $CONF['ItemURL'] = preg_replace('/\/$/', '', $blog->getURL()); // then createItemLink() will work! $url = createItemLink($itemid);