Delicious is a very popular bookmarking website. After searching for number of websites, I found a plugin which counts the number of times the page has been saved in delicious.com. You can easily add the counter along with delicious share button on your blog powered by wordpress.
- Login to your blog
- Download the plugin (http://www.techwhiz.in/repository/zip/delicious_count.zip)
- Install and activate the plugin
- Open the file in which you would like to integrate delicous count button (e.g. single.php)
- Copy and paste the following code in the file and save the file.
<a href="http://delicious.com/save" onclick="window.open(‘http://delicious.com/save?v=5&noui&jump=close&url=’+encodeURIComponent(‘<?php the_permalink() ?>’)+’&title=’+encodeURIComponent(‘<?php the_title() ?>’),’delicious’, ‘toolbar=no,width=550,height=550′); return false;"><img src="images/delicious.png" alt="Delicious" /></a>
<?php if(delicious_count()>0) {echo delicious_count()." saves";} ?>
- Download the image file (http://www.techwhiz.in/repository/png/delicious.png) and save it on the server (take a note of the directory and make sure the image path is correctly configured in the above mentioned codes)
- Sample of delicious count








