Add ANY Social Bookmarks to your blogger blog!

Discussion in 'WordPress' started by Diddy1, Aug 1, 2006.

  1. #1
    This post is for my many blogger friends out there who are trying to better their blogs. It's common knowledge that the blogger software has no easy way to add social bookmark links for each post. So I set out to find an easy way to make these. And success at last. I figure out a way to blogger's own code to make each bookmark link have the exact post you want. Using the blogger template tags of course to make it a little easier. Let's start with where you put the code. It's to be placed right after the $BlogItemBody$ tag. I've included most social bookmarking websites out there to make it easier on you, so you can just choose which to place on your website. And any social bookmark not included you can just go that website try to post a link and copy the link that you had to click on, then it's a matter of just replacing url part of the code. Now on to the piece de resistance:

    
    <a href="http://blinkbits.com/bookmarklets/save.php?v=1&source_url=<$BlogItemPermalinkURL$>&Title=<$BlogItemTitle$>">BlinkBits</a>
    <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=<$BlogItemPermalinkURL$>&Title=<$BlogItemTitle$>">BlinkList</a>
    <a href="http://blogmarks.net/my/new.php?mini=1&title=<$BlogItemTitle$>&url=<$BlogItemPermalinkURL$>">Blogmarks</a>
    <a href="http://buddymarks.com/add_bookmark.php?bookmark_title=<$BlogItemTitle$>&bookmark_url=<$BlogItemPermalinkURL$>">Buddymarks</a>
    <a href="http://www.citeulike.org/posturl?url=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">CiteUlike</a>
    <a href="http://www.connotea.org/add?continue=return&uri=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">Connotea</a>
    <a href="http://del.icio.us/post?url=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">del.icio.us</a>
    <a href="http://de.lirio.us/rubric/post?uri=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">de.lirio.us</a>
    <a href="http://digg.com/submit?phase=2&url=<$BlogItemPermalinkURL$>">Digg it</a>
    <a title="feedmarker" href="http://www.feedmarker.com/admin.php?do=bookmarklet_mark&url=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>;">FeedMarker</a>
    <a href="http://feedmelinks.com/categorize?from=toolbar&op=submit&name=<$BlogItemTitle$>&url=<$BlogItemPermalinkURL$>">feedmelinks</a>
    <a href="http://www.furl.net/storeIt.jsp?t=<$BlogItemTitle$>&u=<$BlogItemPermalinkURL$>">Furl</a>
    <a href="http://www.givealink.org/cgi-pub/bookmarklet/bookmarkletLogin.cgi?&uri=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">Give a Link</a>
    <a href="http://www.gravee.com/account/bookmarkpop?u=<$BlogItemPermalinkURL$>&t=<$BlogItemTitle$>">Gravee</a>
    <a href="http://www.igooi.com/addnewitem.aspx?self=1&noui=yes&jump=close&url=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">igooi</a>
    <a href="http://lister.lilisto.com/?t=<$BlogItemTitle$>&l=<$BlogItemPermalinkURL$>">Lilisto</a>
    <a href="http://www.linkagogo.com/go/AddNoPopup?title=<$BlogItemTitle$>&url=<$BlogItemPermalinkURL$>">Linkagogo</a>
    <a href="http://linkroll.com/insert.php?url=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">Linkroll</a>
    <a href="http://ma.gnolia.com/bookmarklet/add?url=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">ma.gnolia</a>
    <a href="http://www.maple.nu/bookmarks/bookmarklet?bookmark[url]=<$BlogItemPermalinkURL$>&bookmark[description]=<$BlogItemTitle$>">Maple.nu</a>
    <a href="http://www.netvouz.com/action/submitBookmark?url=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">Netvouz</a>
    <a href="http://www.onlywire.com/b/?u=<$BlogItemPermalinkURL$>&t=<$BlogItemTitle$>;">Onlywire</a>
    <a href="http://www.rawsugar.com/pages/tagger.faces?turl=<$BlogItemPermalinkURL$>&tttl=<$BlogItemTitle$>">RawSugar</a>
    <a href="http://reddit.com/submit?url=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">reddit</a>
    <a href="http://scuttle.org/bookmarks.php/pass?action=add&address=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">Scuttle</a>
    <a href="http://www.shadows.com/features/tcr.htm?url=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">Shadows</a>
    <a href="http://simpy.com/simpy/LinkAdd.do?note=<$BlogItemTitle$>&href=<$BlogItemPermalinkURL$>">Simpy</a>
    <a href="http://www.spurl.net/spurl.php?url=<$BlogItemPermalinkURL$>&title=<$BlogItemTitle$>">Spurl</a>
    <a href="http://www.tagtooga.com/tapp/db.exe?c=jsEntryForm&b=fx&title=<$BlogItemTitle$>&url=<$BlogItemPermalinkURL$>">tagtooga</a>
    <a href="http://www.talkdigger.com/index.php?surl=<$BlogItemPermalinkURL$>">TalkDigger</a>
    <a href="http://www.wink.com/_/tag?url=<$BlogItemPermalinkURL$>&doctitle=<$BlogItemTitle$>">Wink</a>
    <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=<$BlogItemTitle$>&u=<$BlogItemPermalinkURL$>">Yahoo MyWeb</a>
    
    Code (markup):

    You can also change the the word before the link closing tag to an image you want. One thing that has worked for me is using the said website's .ico img as the image. Say spurl you can put
    http://www.spurl.net/favicon.ico inside img tags to replace the letters "spurl". Making this a complete it a fully functioning social bookmark link. If you place them after the blogitembody tag in your blog template these will appear after every post with the specified post's url in them of course.

    Hope this helps you out as much as it did me.

    Taken from:

    http://allaboutadsense.blogspot.com/2006/07/social-bookmarks-for-blogger.html

    Thank You
     
    Diddy1, Aug 1, 2006 IP
    klown likes this.
  2. minstrel

    minstrel Illustrious Member

    Messages:
    15,082
    Likes Received:
    1,243
    Best Answers:
    0
    Trophy Points:
    480
    #2
    For Wordpress users, there is the Sociable plugin.
     
    minstrel, Aug 2, 2006 IP