I found a lot of ways and hacks to integrate your delicious links into a page, but I wanted to fetch all links for a given set of tags, not just mine, so I wrote my own hack : introducing taga.licio.us, yet another del.icio.us php hack !
Taga.licio.us is a tag filter for del.icio.us : it produces a page with links from selected tags, allows to integrate del.icio.us links for one or more tags into an existing page, limited to a specified "freshness" (links of the day ? of the hour ?), and comes with gazillions of options. If you are a WordPress user, it is also able to directly post into your database to, say, run the script daily at fixed hour and print links on a given subject right into your blog.
What for ?
I personnaly use del.icio.us as a starter for my click & browse session : on a given subject, ie tag, I find it a nice collection of more or less fresh links and I often find interesting sites. So I'm using the script as a delicious "digest" : filter all the unwanted tags off, display just what I want to read about and start surfing from there.
You can also integrate the resulting page into an existing one. Say for example you run a site about mp3 and games : you could print daily del.icio.us links on this subject. Effortless fresh content everyday :-P
Live example
Before we go on with my usual 40 page documentation, let's see the kind of results the script can output :
- One day old webdesign and css links (default tags as specified in the script)
- One day old blog links (tag specified in the query string)
- One day old php and python links (tags specified in the query string)
Etc … Easy digest of subjects that interest you, to browse from or to integrate into a page.
Ready for the installation guide & manual ? Let's go.
RSS PHP Parser of the Century Award : MagpieRSS
This hack is just a humble user of Magpier RSS, a PHP parser for RSS feeds that is truely powerful. So, first of all, you need to install it on your server. Just download the latest archive, unpack it anywhere on your site and you're done.
If it is possible, I'd recommend putting it beneath your document root (~/htdocs) along with all your shared libraries and stuff. But if not, really anywhere will do, and should someone access a file in their browser, it will have no output and no effect, so don't be afraid.
Get the script : taga.licio.us
The script comes in two flavors : one for anyone willing to integrate del.icio.us links into a php page, and one for WordPress users with a few extra abilities detailed below.
- Standard version :
- delicious-tagalicious.php (syntax highlited, cut 'n paste into a blank file)
- delicious-tagalicious.txt (raw text, save as .php)
- WordPress version :
- wp-delicious-tagalicious.php (syntax highlited, cut 'n paste into a blank file)
- wp-delicious-tagalicious.txt (raw text, save as .php)
Note for WordPress users: although it may look like a plugin, this is not a plugin. This is a standalone script, don't put it in your wp-content/plugins directory or, to quote a source you may have read before, the sky will fall on your head.
Configure the script
Anyone could just stop reading now, since reading the script itself will be probably enough : as usual my "work" is heavily commented and options are detailed to death. I'm just posting everything here for further reference.
First are variables you'll find in both versions. WordPress specific ones will be found below in a, guess what, WordPress section.
Magpie stuff
require_once '/home/you/magpierss/rss_fetch.inc';
This is the physical path to your Magpie copy.
Note for windows users : put path like 'C:/myweb/magpierss/rss_fecth.inc' (regular slashes, not antislashes)
define('MAGPIE_CACHE_ON', 1);
Use MagpieRSS built-in cache feature : this is mandatory for the sake of courtesy. You don't want to fetch a file everytime someone reads your blog, so this parameter tells Magpie to use a cached copy.
To do so, you have to create a directory where your taga.licio.us script is, named "cache", and chmoded to something writable (0777 will do fine)
Note: If you want to cache RSS feeds in another directory, use the constant MAGPIE_CACHE_DIR (for more information, read the comments at the beginning of rss_fetch.inc in your Magpie directory)
define('MAGPIE_CACHE_AGE',3600);
Number of seconds before a file is considered old and you fetch a fresh one. One hour seems fair if you intend to integrate the output into your blog.
Fetching del.icio.us options
Now onto the real core of the options. As usual, all variables (and functions) start with "wp_ozh_deli", to prevent cross reference with another script.
$wp_ozh_deli_param['tags'] = "webdesign css";
Value : a space separated list of tags
Examples : 'mp3' for all links tagged with mp3, 'php python' for all links tagged with php, and all links tagged with python.
This can be overridden by the query string (?tags=php) as on the live examples above.
Note : Although you can actually read on del.icio.us links with 2 or more tags (blog+css+design for example) the associated feed is not correct. So passing a parameter like 'css+blog' won't break the script, but won't produce the wanted result.
$wp_ozh_deli_param['freshness'] = 86400;
Value : an integer, number of seconds for a link to be considered printable.
Typically, if you fetch the script every 24 hours using a cronjob, set it to 86400. A few reminders : 86400s = 24h, 43200s = 12h, 21600 = 6h, 3600 = 1h.
$wp_ozh_deli_param['maxitems'] = 0;
Value : an integer, maximum number of links per feed.
This setting overrides freshness is applicable. Set to 0 (zero) if you don't want to limit : in such a case, you may hit the del.icio.us feed number of items as a limit, set to 30.
Output options
Next variable has a multiline syntax, be careful when editing. Starts with a ' (single quote) and ends accordingly
$wp_ozh_deli_param['post']
- $wp_ozh_deli_param['post'] = '
- Taga.licio.us : %%COUNT%% links from <a href="http://del.icio.us/">del.icio.us</a>,
- on the subject of <em>%%TAGS%%</em> :
- <ol class="delicious">
- %%LINKS%%
- </ol>';
Value : some html code.
Note the use of 3 "templates variables" :
- %%COUNT%% will be replaced by the number of links fetched
- %%TAGS%% will be replaced by the list of tags you picked in a readable format, for example : "mp3, music and audio"
- %%LINKS%% will be replaced by the links, as defined by the next parameter
$wp_ozh_deli_param['pattern']
- wp_ozh_deli_param['pattern'] = '
- <li style="list-style-type: decimal-leading-zero;">
- <strong>»</strong>
- <a href="%%url%%" title="%%description%% [%%time%%, in %%tags%%]">%%title%%</a>
- <span style="font-size: 0.8em; padding-left: 1em;">%%description%%</span>
- </li>';
Value : some html code.
Each link fetched will replace the %%LINKS%% template with this pattern, also using a set of templates :
- %%url%% will be replaced by link url
- %%description%% will be replaced by link description
- %%time%% will be replaced by the time, according to $wp_ozh_deli_param['time_display'] as explained below
- %%tags%% will be replaced by naked gurlz. Errrr, I mean, by the list of tags of the link. Just wanted to check if someone is reading.
$wp_ozh_deli_param['time_display'] = 'elapsed';
Value : 'time' or 'elapsed'
- 'time' : prints at what time the link was posted on delicious, e.g. "2004-09-23 05:36" (see next parameter for Date pattern)
- 'elapsed' : print the time elapsed since the link was posted on delicious, e.g. "5h40 ago"
$wp_ozh_deli_param['time_pattern'] = 'Y-m-d H:i';
Value : a string using the same syntax as the PHP date() function.
If previous parameter set to 'time', this will control the output format of the date. For example, a value of 'Y-m-d H:i' will print "2004-09-23 05:36" (a la del.icio.us)
$wp_ozh_deli_param['time_offset'] = 0;
Value : an integer, time offset between del.icio.us server and your server (not your computer)
Example : 3 means del.icio.us prints "15:12:23" when it's "12:12:23" on your server
Example : -2 means del.icio.us prints "15:12:23" when it's "17:12:23" on your server
Newbie tip: To check the time on your server, put the next line in a new file, upload on your server and read it with your browser :
- <?php print date("Y-m-d H:i:s"); ?>
$wp_ozh_deli_param['skip_empty'] = 0;
Value : 1 or 0.
If If your freshness & tag filter select no link, what to do ? Set to 1 not to print anything, set to 0 to print something anyway, as defined by the next parameter.
$wp_ozh_deli_param['no_entry'] = 'No entry today, sorry !';
Value: a string.
If the previous parameter is set to 0 (ie post something even if there is no link matching criteria on del.icio.us, this message will be printed in replacement of the links (%%LINKS%% tag in the output pattern)
WordPress Specific options
require_once './wp-blog-header.php';
This one is pretty usual. If you move taga.licio.us somewhere from your wordpress root dir, be sure to edit this accordingly.
$wp_ozh_deli_param['more'] = 5;
Value : an integer.
Number of posts after which to place a "Read more…" break when displayed in front page
$wp_ozh_deli_param['insert_sql'] = 0;
Value : 1 or 0.
Defines if you want the result to be injected as a post in your WordPress database. Default is 0 so you won't mess with it until you're done with editing :)
$wp_ozh_deli_param['userid'] = 1;
Value : an integer
This is the User ID to post in. Usually yours, the admin's. If unsure, check http://yourblog.com/wp-admin/users.php and look for yours.
$wp_ozh_deli_param['category'] = 1;
Value : an integer
Category id to put your tag.ali.cio.us links in. If unsure, check http://yourblog.com/wp-admin/categories.php
$wp_ozh_deli_param['allowcomments'] = 'open';
Value : 'open' or 'closed'
Allow comments on the posts ? Of course you want to. Otherwise, how would spammers get a life ? :-P
$wp_ozh_deli_param['allowpings'] = 'open';
Value : 'open' or 'closed'
$wp_ozh_deli_param['posttitle'] = 'Dai.ly tag.ali.cio.us';
Value : a string, title for your posts.
$wp_ozh_deli_param['postname'] = 'daily-tagalicious';
Value : a string, defind the "post slug" as used in permalinks (/archives/2004/10/04/daily-tagalicious/)
$wp_ozh_deli_param['excerpt'] = 'Daily load of links from del.icio.us on: ' . $wp_ozh_deli_param['tags'];
Value : a string, defining the post excerpt.
Important note for WordPress users
If you want to use the posting feature, for example at fixed hours with a cronjob, first rename the file to something secret and personnal. You don't want any lamer in the internet come to your site and reload wp-delicious-tagalicious.php till your MySQL base dies.
Integrating output into an existing page
This is done as usual with the include php function. For example, if you rename the script to "tagalicious.php", put this into your page :
- <?php include("tagalicious.php"); ?>
Known bugs
I am not too sure about how it handles utf-8. I've seen a lot of links with broken utf-8 on del.icio.us itself, so most of the weird content you'll fetch will be original content. I've been told it also depends on the version of your Mysql installation. Sorry, couldn't test this a lot. Anyway, it should be ok 99% of the time.
The feeds on del.icio.us are not always up to date. It seems they are updating them every 5 minutes or so, rather than generating them on the fly. Don't panic if your output misses one or two fresh links.
Wow
That was another long documentation, wasn't it ? Of course, I'm looking for celebrity feedback, so now go play with taga.licio.us !
Shorter URL
Want to share or tweet this post? Please use this short URL: http://ozh.in/2v
Any other ways except a cronjob (not allowed from my host) to call the script ?
Thanks
ps. By the way…great work !
yes
I'm posting a few hints in a new post, this seems to be a common question
It looks like this does not put any pause between hits. Please contact me to discuss this further.
Errrr, my bad. Script updated, I hope this will improve things.
I wrote a similar but far less complete del.isio.us plugin for wordpress people may be interested in.
http://www.shadydentist.com/wordpress/archives/2004/10/15/wp-delicious-v01-rss-based-delicious-plugin-for-wordpress-121/
Tagalicious
I just finished setting up taga.licio.us here on my server: Hexodus Tagalicious It's pretty fresh, yet another way to integrate del.icio.us tags into your site. I am not entirely sure where I will go with this, if anywhere, but I…
Del.icio.us del.icio.us ÂºÜŒÖˆË Â²Â»Â¶Â£Â¬Ë¹Ò”Â¿ÂªÂ· taga.licio.us ….
Del.icio.us ã„ã‚ã„ã‚
便利ã®http://del.icio.us/ãŒæœ€è¿‘ã€ä¸å›½ã§Googleã¨Blog…
links for 2004-10-28
.HTACCESS files useful tips and tricks (categories: Webdev) Apple – iPod Photo Apple unveils new iPod that can display photos (categories: Apple) A new way to submit your resume a senior recruiter from Microsoft: Blogging truly creates a win/win…
æŠŠä½ çš„ç¾Žå‘³ä¹¦ç¾æ˜¾ç¤ºåœ¨ä½ %…
看这里:) [lol]
Tagalicios
This looks to offer strong possibilities for making use of del.icio.us collections for creating usable reference lists.
Taga.licio.us is a tag filter for del.icio.us : it produces a page with links from selected tags, allows to integrate del.icio.us l…
links for 2004-11-14
Is Google the new devil? | News.blog | CNET News.com Things that make you go "hmmm…" [via Linkpool] (categories:…
Why del.icio.us Sucks
I sent an extremely condensed version (one sentence long) of this post to a friend recently, unprompted, for no reason…
Del.icio.us Toolapalooza..;-)
[via Absolutely Del.icio.us – Complete Tool Collection] Below we have a collection of useful tools for making your Del.icio.us experience better – Bunnyhug Updater del.icio.us – an application that lets you download all of your del.icio.us bookmarks an…
[…] Integration It is worthwhile to note that there are tools, such as tag.alicio.ustag.alicio.us and extisp.icio.us that aid in query […]
[…] gs, you may know some who already do this thing.. Update A similar thing can be done with taga.licio.us This entry […]
[…] this way you control the frequency yourself (tags: wordpress del.icio.us delicious) taga.licio.us : a way to integrate del.icio.us « plan […]
The links to the "live examples" aren't working, just fyi.
Hmm ? They are, or did you encounter something weird ?
[…] o.us, ia, wordpress It is worthwhile to note that there are tools, such as tag.alicio.us and extisp.icio.us that aid in query […]
Ok, I found the problem. I guess this makes sense. I am experimenting with various ways to mess with RSS feeds, and I have the FeedWordPress plugin installed as well as your hack. When this plugin is active, I think it causes the rss_fetch function to get declared twice. Hence the error. By turning FeedWordPress plugin off, your hack seems to work fine. Huzzah!
[…] Update: Article about Integrating Delicious using MagpieRSS. […]
Any idea on how to handle non-latin characters (Greek in particular) ?
If it's UTF-8, "should" be ok, even if I have had sometimes weird results I couldn't fix. In other words, "No, no idea" :)
[…] taga.licio.us : a way to integrate del.icio.us – вытаÑкивает из д.и.у выдачу по заданным тегам и интегрирует ее в Ñтраницу. […]
Hi,
Great script. I'm trying to mod it v slightly so I pass a variable (depending on where in my site you are) to the $wp_ozh_deli_param['tags'] variable.
I'm having problems though, it doesnt seem to like what I'm doing.
Instead of
$wp_ozh_deli_param['tags'] = 'fashion';
I've tried
$wp_ozh_deli_param['tags'] = single_cat_title();
To get it to show links tagged with my category title (wordpress).
It doesnt like it though – single_cat_title() is populated.
Any ideas?
Thanks,
Damo
Folksonomies: Tags Strengths, Weaknesses And How To Make Them Work
1. Introduction A folksonomy is a type of distributed classification system. It is usually created by a group of individuals, typically the resource users. Users add tags to online items, such as images, videos, bookmarks and text. These tags are…
New Media Picks Of The Week: Sharewood Picnic 40
Here is a new basket full of delicacies for our weekend Sharewood Picnic. New media resources and tools gathered during the past 10-15 days await your testing and validation before everyone else hears about them. Here are in fact what…
[…] Conclusion j'ai désactivé cette option pour le moment. Je pense que yadd peut être une bonne base pour un futur plugin sur ce thème. Autre piste à explorer : taga.licio.us […]
[…] taga.licio.us – tags […]
[…] taga.licio.us – 一个tags过滤工具 […]
Thanks a bunch…this plugin looks great…can't wait to start using it. I was wondering where we should put it, if not in the WordPress plugins directory? Thanks.
lol I love your anti spam test, but what happens when someone can't do math? lol
Anyway, this looks great but before I put it in and mess with the code, is there a way to randomize the links from tags? I want a list of 20 (out of 80 right now) links from 1 specific tag that will randomize on my site so that every refresh the list of 20 will produce random links from that tag. I though this option would be great so that I don't have to post mu huge list, and the links could show up randomly in a smaller list, not by date, so that every one gets rotated.
Please let me know if you know how I could do this!
important plugin
i install, thanks
[…] del.icio.us篇 Del.icio.us这是一个很棒的基于web的社会书ç¾å·¥å…·ã€‚å¦å¤–值得一æ的是,它的这个域å也很有æ„æ€ï¼ŒæŠŠè‹±æ–‡delicious(美味的)适当的分开æ¥ä½œä¸ºåŸŸå,的确很有创æ„。 éš ç€Del.icio.us使用的用户越æ¥è¶Šå¤šï¼Œå½¢å½¢è‰²è‰²çš„工具ã€æ’ä»¶å’Œé™„åŠ å·¥å…·ä¹Ÿè¶Šæ¥è¶Šä¸°å¯Œã€‚当然Del.icio.us本身也æ供了相当多的工具,比如 能把Del.icio.usä¸çš„书ç¾æ¯æ—¥è‡ªåŠ¨å‘布到wordpress日志ä¸ã€ä½¿ç”¨del.icio.usè·Ÿè¸ªä½ çš„blogç‰ç‰ï¼Œè€Œè¿™é‡Œå°±åˆ—å‡ºäº†ä¸€ä¸ªå…¨é¢ çš„ç¬¬ä¸‰æ–¹æ‰©å±•å·¥å…·åˆ—è¡¨ï¼Œä¸‹é¢ï¼Œæˆ‘们就æ¥çœ‹çœ‹è¿™äº›ä¸œè¥¿èƒ½ç»™æˆ‘带æ¥ä»€ä¹ˆåŠŸèƒ½ã€‚ Del.icio.usæ–°çš„æœç´¢å·¥å…·Â - æ供多ç§æ–¹æ³•æœç´¢ä½ 自已或别人的tag和书ç¾ã€‚ Trendalicious - 一个del.icio.us上网站æµè¡Œè¶‹åŠ¿çš„实时查看工具 Delicious Linkbacks - 与å‰é¢æˆ‘写的使用del.icio.usè·Ÿè¸ªä½ çš„blog类似的一个工具,å¯ä»¥æŸ¥çœ‹æœ‰å“ªäº›äººæ”¶è—了当å‰ä½ 访问的网å€ï¼Œåˆ—出一个列表。 del.icio.us most popular treemap -Â ç”¨æ ‘å½¢å›¾çš„æ–¹å¼åˆ—出最å—欢迎的网å€åˆ—表[体积越大å—欢迎承度越高,越明亮平å‡å¯¿å‘½è¶Šé•¿] MySQLicious –把del.icio.us书ç¾é•œåƒåˆ°MySQLæ•°æ®åº“ä¸çš„工具 del.icio.us loader — 把Firefoxä¸çš„书ç¾ç›´æŽ¥å¯¼å…¥åˆ°del.icio.usä¸çš„工具 introsp.icio.us — 一个Ruby脚本,用æ¥åˆ†æžä½ 在del.icio.suä¸çš„书ç¾ï¼Œå¹¶ç”Ÿæˆä¸€ä¸ªä½ 感兴趣的收è—列表。 Delibar — 它å¯ä»¥æŠŠä½ 所有的书ç¾å˜å‚¨åˆ°ç³»ç»Ÿæ é‡Œï¼Œä»¥ä¾¿ä½ å¯ä»¥éžå¸¸æ–¹ä¾¿çš„通过点击tag和链接æ¥è®¿é—®ç›¸å…³ç½‘站。 WordPre.cio.us — 导入del.icio.us书ç¾åˆ°ä½ çš„wordpress blog Search plugin for Mozilla browsers — 一个Mozillaæ’件,å¯ä»¥æœç´¢del.icio.usä¸çš„书ç¾ã€‚ HuntAndGather - 一个firefox扩展,æ供很一些éžå¸¸æœ‰ç”¨çš„功能。 del.icio.us import script — 一个prel脚本,导入Netscapeä¸çš„收è—夹到del.icio.usä¸ã€‚ delicious-java — 一个与del.icio.us相结åˆçš„Java API The Easiest Way to Publish del.icio.us Links on Your Site — å¯ä»¥è®©ä½ åœ¨ä½ çš„ç½‘ç«™ä¸Šå‘布链接 delicious-discuss –一个多用途的邮件列表,å¯ä»¥ä¸Žå…¶å®ƒdel.icio.us用户之间进行èŠå¤©ã€‚ Automatic filing with del.icio.us - 自动归档当å‰ç½‘页到del.icio.us Wetaste - 一个Del.icio.usçš„WYSIWYGå‘掘工具 sid.vicio.us - 为del.icio.us上的tag创建ontologies del.icio.us tag search - del.icio.us tag查找工具 foxylicious - 一个Mozilla Firefox 扩展,用æ¥åŒæ¥ä½ çš„del.icio.us书ç¾åˆ°ä½ çš„æµè§ˆå™¨æ”¶è—夹。 extispicious - 产生éšæœºå’Œå¹¶åˆ—çš„tag, taga.licio.us - 一个tags过滤工具 avar.icio.us — å¦ä¸€ä¸ªdel.icio.usé€’äº¤ç•Œé¢ Firefox plugin - Firefoxæ’件,使用firefoxå’Œdel.icio.us结åˆä¸ºä¸€ä½“。 Durl- 一个del.icio.us URL查询工具,并æä¾›RSS输出. del.icio.us + Gmail - 一个æ¯å¤©è¿è¡Œä¸€æ¬¡çš„脚本,å¯ä»¥ç´¢å¼•æ¯ä¸€ä¸ªé“¾æŽ¥ï¼Œç„¶åŽå‘gmailç»™ä½ ã€‚ del.icio.us Tag Stemmer -Â å¸®ä½ æŸ¥æ‰¾ä½ çš„tagsä¸æ˜¯å¦æœ‰ç›¸åŒå«ä¹‰çš„å•è¯ï¼Œä»¥ä¾¿ä½ 清ç†tag. delicious2safari — 导入del.icio.us书ç¾åˆ°Safariä¸ã€‚ cocoalicious –一个Mac OSXçš„del.icio.us客户端。 Sorting del.icio.us/popular - 一个书ç¾æ , Pasta - 一个del.icio.us的纯文本粘贴æœåŠ¡ã€‚ Mapping del.icio.us with Anthracite and OmniGraffle - 一个del.icio.us tagåˆ›é€ è§†è§‰æŽ¢ç©¶çš„æ•™ç¨‹ã€‚. delicious.py — 使用python,通过del.icio.usçš„APIå…è®¸ä½ è®¿é—®å®ƒçš„æœåŠ¡ Extended del.icio.us bookmarklets - 用æ¥æ‰©å±•del.icio.us 的功能。 Delicious Link Checker –一个perl脚本,接收所有用户的链接并检查它们,输出一个是å¦ä»å¯ä»¥è®¿é—®æˆ–错误代ç åŠä¸€äº›æœ‰ç”¨ä¿¡æ¯ã€‚ foaflicious - 一个å¯ä»¥ä»Žä½ çš„del.icio.us收件箱ä¸ç”ŸæˆFOAF文件的应用程åºã€‚ del.icio.us Illogical Interface - ä¸åŒçš„tagç•Œé¢ Backup Del.icio.us with ExcelÂ â€”Â å¸®åŠ©ä½ å¤‡ä»½ä¹¦ç¾åˆ°Excel 2003 Delicious Mind Map Maker - 一个集群图生æˆå·¥å…·. Oishii - 一个在del.icio.us上å—欢迎网站的列表。 BookmarksToDelicious -一个独立的Pythonå®¢æˆ·ç«¯å¸®ä½ ä»Žä¸€ä¸ªæ–‡ä»¶ä¸é€’交书ç¾åˆ°del.icio.us is Bunnyhug Updater del.icio.us - 一个程åºè®©ä½ ä¸‹è½½ä½ è‡ªå·²æ‰€æœ‰çš„del.icio.us书ç¾åˆ°ä½ 的本地机器上。 Del.icio.us popular sites — 显示最近指定时间内最å—欢迎的站点。 del.icio.us Smart Tagging Plugin for WordPress - 一个为wordpress准备的del.icio.us æ’件。 Related del.icio.us Links in Your Sidebar - 关è”çš„del.icio.usé“¾æŽ¥åœ¨ä½ çš„å·¥å…·æ¡ä¸. Integrating Bloglines and del.icio.us –能éžå¸¸æ–¹ä¾¿çš„æŠŠä½ æ£åœ¨Bloginesä¸é˜…读的链接å‘布到del.icio.usä¸ã€‚ Gnomolicious –一个GNOME Java程åºï¼Œå¯ä»¥å¸®åŠ©ä½ 通过拖拉æ¥å‘布链接到del.icio.us网站。 Services Delicious –. 一个del.icio.us基于webçš„æœåŠ¡ï¼Œå®ƒå¯ä»¥è®©ä½ 从任何PHP脚本选择ã€æ·»åŠ å’Œåˆ é™¤ä½ çš„ä¹¦ç¾ã€‚ Graph del.icio.us subscriptions network — 图形化æµè§ˆdel.icio.us用户网络 […]
[…] taga.licio.us160;- […]
[…] æ’件页é¢:点击进入 […]
[…] taga.licio.us : a way to integrate del.icio.us « planetOzh (tags: del.icio.us wordpress plugin) […]
[…] taga.licio.us a way to integrate del.icio.us (tags: Del.icio.us tools wordpress) […]
The Tagging Toolbox : 30+ Tagging Tools…
(* Source: Stan Schroeder *) See also: World’s First Review of Streamy – The AJAX-based Digg Rival – Tags – for some, one of the best ideas on the web, for others, merely a visual distraction. Yes, we’re talking about……
[…] Taga.licio.us Taga.licio.us is a tag filter for del.icio.us : it produces a page with links from selected tags, allows to integrate del.icio.us links for one or more tags into an existing page, limited to a specified "freshness" (links of the day ? of the hour ?), and comes with gazillions of options. […]
[…] Taga.licio.us: Organize your del.icio.us tags with this application, which creates pages of favorite links on your WordPress blog. […]
[…] Tagalicious […]
Is there by any chance a new version coming out to fix that categories thing that changed in WordPress 2.3?
bernabauer » wow, this is a pretty old stuff :) I'll have a look (heck, I dont even remember precisely what this is about ;)
this is a very good script. I might say, it is the only one that fits to my needs! If it would be updated I should be a happy blogger until the next update! ;-)
[…] and forthwith, I present the Taglicious plugin for WordPress (not to be confused with the taga.licio.us plugin for WordPress), which you can download below. Whenever a post or page is saved, the content is scanned for […]
[…] taga.licio.us (affiche la liste complète des liens delicious. Différentes options d'affichage). […]
[…] taga.licio.us : a way to integrate del.icio.us « planetOzh produces a page with links from selected tags, allows to integrate del.icio.us links for one or more tags into an existing page, limited to a specified "freshness". It is also able to directly post into your database. (tags: wordpress plugin) […]
Hmmm, came here to look at your youtube plugin, and then I find this! I stated my first wordpress plugin a few days ago, and guess what I wanted to make? THE EXACT SAME THING! Doh!
Oh well, I think I will still try to finish mine, I just needed to have a good reason to learn how to make plugins, and I still have a ton of things to do on it.
Anyways, take a look at my stuff at http://pappmaskin.no/2008/10/playing-with-snapcasa-screenshots-and-delicious/. What is different with mine is that I uses the xslt-support in php5, and that I included thumbnails from SnapCasa, which I feel added a good dimension to the feature.
My wordpress plugin is not online yet, I have to find out how to widgetize and shortcode it, and I also want to find out how I can make it generate a "page" plus nice permalinks etc.