Thumbs up.
]]>Not using any plugin, I prefer not to use the WordPress plugins and just develop my own. The main reason why I avoided any social bookmarking plugins is because most of them relied on JavaScript to pull the document URL and title, and it’s really slow. Instead, I just put the code straight into the template and used some PHP to pull the titles and URLs. Here’s the code:
<?php
// Grab post title and sanitize
$social_title = urlencode($post->post_title);
// Grab post URL and sanitize it
$social_url = urlencode($post->guid);
?>
<p class="social">
<a href="http://digg.com/submit?phase=2&url=<?=$social_url? rel="nofollow" rel="nofollow">" rel="nofollow" target="_blank" title="Digg This!"><img src="/images/social/digg.png" alt="Digg This!" height="16" width="16" /></a>
<a href="http://www.stumbleupon.com/submit?url=<?=$social_url? rel="nofollow" rel="nofollow">&title=<?=$social_title?>" rel="nofollow" target="_blank" title="Stumble It!"><img src="/images/social/stumble.png" alt="Stumble It!" height="16" width="16" /></a>
<a href="http://myweb.yahoo.com/myresults/bookmarklet?t=<?=$social_title? rel="nofollow" rel="nofollow">&u=<?=$social_url?>&ei=UTF" rel="nofollow" target="_blank" title="Add to Yahoo! My Web"><img src="/images/social/yahoo.png" alt="Add to Yahoo! My Web" height="16" width="16" /></a>
<a href="http://technorati.com/faves?add=<?=$social_url? rel="nofollow" rel="nofollow">" rel="nofollow" target="_blank" title="Add to Technorati"><img src="/images/social/technorati.png" alt="Add to Technorati" height="16" width="16" /></a>
<a href="http://del.icio.us/post?url=<?=$social_url? rel="nofollow" rel="nofollow">&title=<?=$social_title?>" rel="nofollow" target="_blank" title="Bookmark to Del.icio.us"><img src="/images/social/delicious.png" alt="Bookmark to Del.icio.us" height="16" width="16" /></a>
<a href="http://www.furl.net/storeIt.jsp?u=<?=$social_url? rel="nofollow" rel="nofollow">&t=<?=$social_title?>" rel="nofollow" target="_blank" title="Bookmark to Furl"><img src="/images/social/furl.png" alt="Bookmark to Furl" height="16" width="16" /></a>
<a href="http://www.spurl.net/spurl.php?url=<?=$social_url? rel="nofollow" rel="nofollow">&title=<?=$social_title?>" rel="nofollow" target="_blank" title="Spurl This!"><img src="/images/social/spurl.png" alt="Spurl This!" height="16" width="16" /></a>
<a href="http://reddit.com/submit?url=<?=$social_url? rel="nofollow" rel="nofollow">&title=<?=$social_title?>" rel="nofollow" target="_blank" title="Add to Reddit"><img src="/images/social/reddit.png" alt="Add to Reddit" height="16" width="16" /></a>
<a href="http://www.newsvine.com/_tools/seed&save?u=<?=$social_url? rel="nofollow" rel="nofollow">&h=<?=$social_title?>" rel="nofollow" target="_blank" title="Bookmark to Newsvine"><img src="/images/social/newsvine.png" alt="Bookmark to Newsvine" height="16" width="16" /></a>
</p>
As for where you would put this, you need to add this to your single.php template, just after the <h2> tags where the title goes. You can also edit the index.php template and do the same thing, right after the title. Hope this helps.
Looking forward to the launch.
]]>