top

Tutorial : how to create custom social bookmark button

Sunday, July 13th, 2008

Been thinking or wondering how they did custom social button? In this article i will show how to create custom social bookmark button with working link.
Anyway, it is pretty easy if you understand the wordpress template tag. #.
The idea

The Code
1. Digg submit url
http://digg.com/submit/?phase=2&url=
2. Post permalink
<?php the_permalink() ?>
Digg submit url + Post permalink(1+2)
http://digg.com/submit/?phase=2&url=<?php the_permalink() ?>
To make [...]