Here’s a quick and dirty way to add a tweet this post link to your WordPress template. Just add this code to your site’s post template whever you want it displayed.
<?php
// Grab Title Text
$tweet = get_the_title($id);
// Change spaces into ‘+’
$tweet = str_replace (” “, “%20″, $tweet);
// Grab Permalink
$tweetURL = get_permalink();
// Print “Tweet this article” link with sanitized URL
print “<a href=http://twitter.com/home?status=”.$tweet.”+”.urlencode($tweetURL).”>Tweet This Post</a>”;
?>
