• Hi, I’m looking for a plugin that can place a Del.icio.us and digg link at the bottom of each blog post. I’ve seen a few, but I don’t like the way they look. One is a little picture that doesn’t say anything and the other is a big Digg thing that takes up too much space. Is there one that is just a simple tiny text link? ANy help would be great!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator Samuel Wood (Otto)

    (@otto42)

    WordPress.org Admin

    Digg offers a very nice compact version of their digg button. I use it on my own site.

    The code to do it is basically this:

    <div class="diggbox">
    <script type="text/javascript">
    digg_url = '<?php the_permalink(); ?>';
    digg_title = '<?php the_title(); ?>';
    digg_skin = 'compact';
    digg_bgcolor = '#ffffff';
    </script>
    <script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
    </div>

    You stick it in your Loop and voila, a compact little digg box.

    More options can be found here: http://digg.com/tools/integrate

    Thread Starter depechemode3

    (@depechemode3)

    Thanks, I see the digg text is at the top of your blog post. Is there an option to put it on the bottom?

    Moderator Samuel Wood (Otto)

    (@otto42)

    WordPress.org Admin

    It’s at the top of my post because I wanted it there. Where it shows up is a function of where you put that code in your loop. I put it at the top of my Loop and then used CSS to float the diggbox div right, so it would show up there.

    If you want it at the bottom, put that code at the bottom of your Loop.

    Thread Starter depechemode3

    (@depechemode3)

    Cool, I got everything setup. Thanks Otto!

    Thread Starter depechemode3

    (@depechemode3)

    Otto, I put that code in and it allows me to digg the story, but I notice the total digg count thing is still at zero even after I dugg it. Is there some other code I need?

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Del.icio.us digg plugin ????’ is closed to new replies.