Twitter Tools is an awesome plugin. I use it on multiple sites, including this one, to automatically tweet new posts.
While the “New blog post:” prefix is good for this site where I also do tweets of my own, it’s not so good for Twitter accounts that are only used for tweeting new posts, such as my FinalGear.com Twitter account. So here’s a tiny little plugin that will allow you to change or remove the prefix from the tweets that Twitter Tools makes.
[code lang=”php”]tweet_prefix = ‘Check out my cool blog post’;
// Changes tweet format to: “PREFIX: URL – TITLE”
// $aktt->tweet_format = $aktt->tweet_prefix . ‘: %2$s – %1$s’;
// Changes tweet format to: “TITLE URL”
// $aktt->tweet_format = ‘%1$s %2$s’;
}
?>[/code]
Copy/paste the above into a text file (enable plain text mode first if need be) and then rename it to something.php (twitter-tools-tweaks.php will do) and stick it in your plugins folder. Activate it and you’ll be good to go.