Create custom social bookmark button for wordpress

Social networking site is extremely useful for increasing our website traffic. Social networking button work is somethink like this, when user click on this button, they will open new link to appropriate social networking site.

Submit URL+ Post Permalink=Post to social networking

for example:

http://digg.com/submit/?phase=2&url=+http://blogfreakz.com/category/tutorial/wordpress-tutorial=http://digg.com/submit/?phase=2&url=http://blogfreakz.com/category/tutorial/wordpress-tutorial

For wordpress themes, we can use wordpress template tags bellow

<?php the_permalink() ?>

To implement this on wordpress themes is pretty simple. Open your single.php from your wordpress themes and then copy and paste source code before <?php comments_template(); ?> tag.

for example

<a href=”http://digg.com/submit/?phase=2&url=<?php the_permalink()?>”><img alt=”Add to Digg” src=”<?php bloginfo(‘template_directory’); ?>/images/digg.png”/></a>

<?php comments_template(); ?>

Here list of social networking link , if you have suggestion other social networking , feel free add this on comment with URL link .
del.icio.us

http://del.icio.us/post?url=<?php the_permalink() ?

blinklist

http://blinklist.com/index.php?Action=Blink/addblink.php&Url=<?php the_permalink() ?

ma.gnolia

http://ma.gnolia.com/bookmarklet/add?url=<?php the_permalink() ?>

StumbleUpon

http://www.stumbleupon.com/submit?url=<?php the_permalink() ?>

Technorati

http://www.technorati.com/faves?add=<?php the_permalink() ?>

Twitter

http://twitthis.com/twit?url=<?php the_permalink() ?>

Facebook

http://www.facebook.com/share.php?u=<?php the_permalink() ?>

Friendfeed

http://friendfeed.com/?url=<?php the_permalink() ?>

Designfloat

http://designfloat.com/submit.php?url=<?php get_permalink() ?>

Reddit

http://reddit.com/submit?url=<?php the_permalink(); ?>

Designbump

http://designbump.com/node/add/drigg?url=<?php get_permalink() ?>

download example source code:

social button

Incoming search terms for the article:

Related Posts

Pure CSS Animated Buttons

Easy Customizations in WordPress Admin

ExtraGrid Premium WordPress Theme

Essential WPMU WordPress Plugins

2 Comments

  1. oi web designer

    05.07.2009

    ini yang saya cari2 selama 2 hari ini.
    thanks for share..-)

  2. Chuck

    01.07.2010

    Thankyou SO much.
    This is the only tutorial I could find that laid everything out so easily. You saved me countless hours of google searches trying to find something as good as this.