Plain text social bookmark links for WordPress
Ever wonder how to add social bookmark links to your WordPress blog without any plugins or icons attached to them? This article gives you the plain text code for many different social media sites such as Digg, Facebook, Reddit, Delicious, and many more. These links allow you to fully customize your WordPress site even more.
Blinkbitshttp://blinkbits.com/bookmarklets/save.php?v=1&source_url= <?php the_permalink();?>&title=<?php the_title();?>&Pop=no
http://www.blinklist.com/index.php?Action=Blink/addblink.php &Quick=true&Url= <?php the_permalink();?>&Title=<?php the_title();?>&Pop=yes
http://blogmarks.net/my/new.php? title= <?php the_title();?>&url=<?php the_permalink();?>
http://blogmemes.net/post.php?&title= <?php the_title();?>&url=<?php the_permalink();?>
http://www.care2.com/news/news_post.html? url= <?php the_permalink();?>&title=<?php the_title();?>&v=1.3">
http://del.icio.us/post?v=4&noui&jump=close&url= <?php the_permalink();?>&title=<?php the_title();?>
http://designbump.com/node/add/drigg?url=<?php the_permalink();?>
http://www.designfloat.com/submit.php?url= <?php the_permalink();?>&<?php the_title();?>
http://digg.com/submit?phase=2&url= <?php the_permalink();?>&title=<?php the_title();?>
http://www.diigo.com/post?url= <?php the_permalink();?>&title=<?php the_title();?>
http://www.dzone.com/links/add.html? url= <?php the_permalink();?>&title=<?php the_title();?>
http://www.facebook.com/share.php?u=<?php the_permalink();?>
http://www.furl.net/storeIt.jsp? t= TITLE&u=<?php the_permalink();?>
http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk= <?php the_permalink();?>&title=<?php the_title();?>
http://www.hugg.com/submit?url=<?php the_permalink();?>
http://ma.gnolia.com/bookmarklet/add? url= <?php the_permalink();?>&title=<?php the_title();?>
http://www.mister-wong.com/index.php?action=addurl&bm_url= <?php the_permalink();?>&bm_description=<?php the_title();?>
http://www.mixx.com/submit?page_url= <?php the_permalink();?>&<?php the_title();?>
http://www.newsvine.com/_tools/seed&save? u= <?php the_permalink();?>&h=<?php the_title();?>
http://netvouz.com/action/submitBookmark?url= <?php the_permalink();?>&title=<?php the_title();?>&popup=no
http://reddit.com/submit?url= <?php the_permalink();?>&title=<?php the_title();?>
http://www.shadows.com/features/tcr.htm? url= <?php the_permalink();?>&title=<?php the_title();?>
http://simpy.com/simpy/LinkAdd.do? title= <?php the_title();?>&href=<?php the_permalink();?>
http://slashdot.org/bookmark.pl?url= <?php the_permalink();?>&title=<?php the_title();?>
http://www.squidoo.com/lensmaster/bookmark?<?php the_permalink();?>
http://www.spurl.net/spurl.php?v=3&title= <?php the_title();?>&url=<?php the_permalink();?>
http://www.stumbleupon.com/submit?url= <?php the_permalink();?>&title=<?php the_title();?>
http://technorati.com/faves/?add=<?php the_permalink();?>
https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us &url= <?php the_permalink();?>&title=<?php the_title();?>&top=1
http://www.wink.com/_/tag?url= <?php the_permalink();?>&doctitle=<?php the_title();?>
http://myweb.yahoo.com/myresults/bookmarklet? t= <?php the_title();?>&u=<?php the_permalink();?>&ei=UTF
Add ReTweet Link with a TinyURL Permalink
First, add this to your functions.php file
function getTinyUrl($url) { $tinyurl = file_get_contents("http://tinyurl.com/api-create.php?url=".$url); return $tinyurl; }
Next, add this piece of code wherever you want it to appear on your page. That’s it, then you’re done
<?php $turl = getTinyUrl(get_permalink($post->ID)); echo '<a href="http://twitter.com/home?status=RT @YOURTWITTERUSERNAME '.$post->post_title.' '.$turl.'" title="Click to send this page to Twitter!" target="_blank">'.$turl.'</a>' ?>
Related posts:







07-21-09
Great post, thanks for sharing these links.
I really think WordPress should have a Social Bookmarking plug-in built in. It’s something most people really want on their blog.
01-01-10
i am going to use these! Thanks