An essential step in your blog promotion is to have people voting for you on sites such as digg.com or StumbleUpon. So, why not make it easier to visitors to vote for your articles on social bookmarking sites? In this tutorial, I’ll show you how to create a fancy multi-widget to tell your readers to go vote for your posts.
The problem
Many visitors will not vote for you posts on digg or stumbleupon simply because they read and enjoyed it. They simply don’t think about it, exepted if they come from one of theses websites.
Most social bookmarking sites provides widgets to add to your blog to provide your visitors an easy way to vote for your post. This is functionally good, but what about create something more personal, which will perfectly fit your blog theme colors?

Creating the widget
Let’s create our very own multi-widget. First of it all, download the sample image I created for you. It will serve as the background image in this example, but of course you can change it, or put a background color instead by using css.
On my blog, I chose to display the multi-widget at the bottom of each post. Like this, the reader will only see it if he finished the article, and will probably vote for it if he liked.
Open the single.php file from your blog theme, and paste the following code after your post:
<div id="cwc-vote">
<ul>
<li><a href="http://del.icio.us/post?url=<?php echo the_permalink(); ?>">Del.icio.us (<span id='<?php echo md5("http://".$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]);?>'>0</span>)</a></li>
<li><a href="http://digg.com/submit?url=<?php echo the_permalink(); ?>">Digg</a></li>
<li><a href="http://www.stumbleupon.com/submit?url=<?php echo the_permalink(); ?>">StumbleUpon</a></li>
<li><a href="http://reddit.com/submit?url=<?php echo the_permalink(); ?>">Reddit</a></li>
<li><a href="http://www.dzone.com/links/add.html?url=<?php echo the_permalink(); ?>">Dzone</a></li>
</ul>
</div>
We now got a list with links to directly post (or vote if already posted) articles to the following sites: Del.icio.us, Digg, StumbleUpon, Reddit and Dzone.
You can easily add others social bookmarking sites: I can’t guarantee that it will work for all sites, but basically, the link must look like this:
<a href="http://www.yoursite.com/links/submit?url=<?php echo the_permalink(); ?>">
CSS Styling
For now, our multi-widget is fully functional, but a bit ugly. Happily, pasting the following CSS code to your style.css file will make the widget looks good.
#cwc-vote{
/* Don't forget to change the image path */
background: #fff url(images/cwc-vote.png) no-repeat top left;
width:600px;
height:45px;
padding-top:35px;
}
#cwc-vote ul{
list-style-type:none;
margin-left:-20px;
}
#cwc-vote ul li{
display:inline;
margin-right:-10px;
}
#cwc-vote ul li a{
color:#fff;
font-size:13px;
}
Adding live Del.icio.us count
You probably noticed the (0) next to the Del.icio.us link. We’ll use the Del.icio.us api so we can get how much times the post has been bookmarked by users.
Paste the following code in your single.php file, below the multi-widget.
<script type='text/javascript'>
function displayURL(data) {
var urlinfo = data[0];
if (!urlinfo.total_posts) return;
document.getElementById("<?php echo md5("http://".$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]);?>").innerHTML = urlinfo.total_posts;
}
</script>
<script src='http://badges.del.icio.us/feeds/json/url/data?url=<?php the_permalink() ?>&callback=displayURL'></script>
It is also possible to get the number of digg, but it’s a little harder, especially for beginners. Anyways, if you’re interested about it, tell me and I should make another tutorial.
Now, you have a working multi widget to nicely tell your readers to vote for your article. On a personal note, I just made my first ever digg front page during the time I was writing this post and I think this multi-widget helped a lot. I wish the same to all of you



Monday, August 4th, 2008 at 7:48 am
I just gave this a try and in a few minutes was able to customize and add this to my blog post page. Pretty cool! You can see my implementation on my sake blog (using MimboPro theme). Here is an example.
Thanks for this great tutorial!
Timothy
Monday, August 4th, 2008 at 9:17 am
Hey Timothy, glad you liked the turial. You did a great job on your blog!
Monday, August 4th, 2008 at 9:35 am
Nice one, but there should be option for everyone that not use widgets also, like some kind of plugin for WP, maybe with options to setup it… or simple tutorial wihtout widgets.. Please !
Monday, August 4th, 2008 at 10:24 am
Peter: I might think about a WP plugin, but there’s already some nice plugins. What do you mean by “simple tutorial wihtout widgets” ?
Monday, August 4th, 2008 at 12:16 pm
@ JBJ - Great post!
@ Peter - If you don’t want to use widgets, I also explained how to hard code it here.
Monday, August 4th, 2008 at 1:03 pm
Thanks Kyle, I’m glad you like it!
Monday, August 4th, 2008 at 8:12 pm
Great Tips!
I’m alway wait for this kind of tips and you provided it successfully.
Tuesday, August 5th, 2008 at 12:47 am
Glad you liked the tutorial, shawal
Tuesday, August 5th, 2008 at 4:17 am
I was thinking about something with CSS, icons and all that stuff.
For example look here: http://www.hongkiat.com/blog/photoshop-shortcuts-tricks-boost-productivity/
There is Spread/Promote that i would like to implement easy on my blog.
Not only SB plugin with simple icons but something like this. Yours post show the widget stuff tutorial how to make this work but plugin with CSS, images and all that would be better.
Tnx.
Tuesday, August 5th, 2008 at 5:41 am
Great job,I need it right now~
Tuesday, August 5th, 2008 at 5:12 pm
Yeah, you should definitely make a tutorial on how to add the Digg count.
Wednesday, August 6th, 2008 at 12:39 am
I tweaked my implementation of your idea a little more and added wording for subscribing along with the social networking links. Here is an example.
I’d also like to see a tutorial on adding the Digg count!
thanks again,
Timothy
Wednesday, August 6th, 2008 at 4:00 pm
@Timothy: Great work! Glad to see people using the tutorial!
@All: Ok for the digg count
I’ll try it on my blog, and then I’ll write a tutorial.
Thursday, August 28th, 2008 at 5:31 am
Fantastic thankyou, exactly what I was looking for, it would be nice to know how to do the digg count aswell mate if you wouldn’t mind!
Friday, September 19th, 2008 at 6:10 am
Hmm…We don’t have this level of control over templates etc on Wordpress.com, any tricks for achieving the same kind of thing on wordpress.com hosted sites?
Thursday, October 9th, 2008 at 5:56 am
Hi,
Great stuff by as Besscabiz said, do you have the same tricks for wordpress.com hosted sites?
Many thanks
Monday, April 20th, 2009 at 3:47 pm
Had a question is there a way to do this on a website not a blog??? Any help would be great! Thanks Laura
Trackbacks/Pingbacks
Leave A Comment
Become one of our
Featured Sites
Recent Trackbacks
Contributing Authors
Archives
Extras
WordPress Hacks Copyright © 2007-2009 | An Apricot Media Website
Template by StudioPress | Custom Design by Kyle Eslick and Blog Design Studio
RSS Feed Email RSS