I'd like to display my delicious links within the content of a node. Is there an easy way to do this?

Comments

Anonymous’s picture

Assigned: Unassigned »

There 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

Anonymous’s picture

Status: Active » Closed (fixed)