Closed (fixed)
Project:
Delicious
Version:
5.x-1.4
Component:
User interface
Priority:
Normal
Category:
Support request
Reporter:
Created:
2 Jun 2008 at 20:32 UTC
Updated:
21 Jul 2008 at 10:45 UTC
Jump to comment: Most recent
I'd like to display my delicious links within the content of a node. Is there an easy way to do this?
Comments
Comment #1
Anonymous (not verified) commentedThere is no easy way to do this.
If you have a look at the delicious module method delicious_block_page() there is the following query that will help you in the right direction ..
$query = "SELECT DISTINCT dl.description, dl.href, du.user FROM {delicious_link} dl LEFT JOIN {delicious_tag} dt ON dl.lid = dt.lid LEFT JOIN ...
With the above query as guidance you should be able to create a node with PHP content which displays your delicious links.
Hope that helps.
Paul
Comment #2
Anonymous (not verified) commented