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 :)

Want automatic updates? Subscribe to our RSS feed or
Get Email Updates sent directly to your inbox!
Digg This | Stumble it | Add to Del.icio.us | | Print This

There Are 25 Responses So Far. »

  1. 1 Timothy
    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

  2. 2 jbj
    Monday, August 4th, 2008 at 9:17 am

    Hey Timothy, glad you liked the turial. You did a great job on your blog!

  3. 3 Peter
    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 !

  4. 4 jbj
    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” ?

  5. 5 Kyle Eslick
    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.

  6. 6 Jean-Baptiste Jung
    Monday, August 4th, 2008 at 1:03 pm

    Thanks Kyle, I’m glad you like it!

  7. 7 shawal
    Monday, August 4th, 2008 at 8:12 pm

    Great Tips!

    I’m alway wait for this kind of tips and you provided it successfully.

  8. 8 Jean-Baptiste Jung
    Tuesday, August 5th, 2008 at 12:47 am

    Glad you liked the tutorial, shawal :)

  9. 9 Peter
    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.

  10. 10 David Lau
    Tuesday, August 5th, 2008 at 5:41 am

    Great job,I need it right now~

  11. 11 Keenan Payne
    Tuesday, August 5th, 2008 at 5:12 pm

    Yeah, you should definitely make a tutorial on how to add the Digg count. :D

  12. 12 Timothy
    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

  13. 13 Jean-Baptiste Jung
    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.

  14. 14 Steve Tolley
    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!

  15. 15 Besscabiz
    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?

  16. 16 Duffer2205
    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

  17. 17 Laura
    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



Leave A Comment