Twitter Tools integrates with Twitter by giving you the following functionality:
There are a number of configuration options for Twitter Tools. You can find these in Options > Twitter Tools.
If you are using widgets, you can drag Twitter Tools to your sidebar to display your latest tweets.
If you are not using widgest, you can use a template tag to add your latest tweets to your sidebar.
<?php aktt_sidebar_tweets(); ?>
If you just want your latest tweet, use this template tag.
<?php aktt_latest_tweet(); ?>
Twitter Tools contains a hook that can be used to pass along your tweet data to another service (for example, some folks have wanted to be able to update their Facebook status). To use this hook, create a plugin and add an action to:
aktt_add_tweet
Your plugin function will receive an aktt_tweet object as the first parameter.
Example psuedo-code:
function my_status_update($tweet) { // do something here }
add_action('aktt_add_tweet', 'my_status_update')




