Zannel Tools integrates with Zannel by giving you the following functionality:
There are a number of configuration options for Zannel Tools. You can find these in Settings > Zannel Tools.
If you are using widgets, you can drag Zannel Tools to your sidebar to display your latest updates.
If you are not using widgest, you can use a template tag to add your latest updates to your sidebar.
<?php cfzt_sidebar_zupdates(); ?>
If you just want your latest update, use this template tag.
<?php cfzt_latest_zupdate(); ?>
Zannel Tools contains a hook that can be used to pass along your Zannel update 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:
cfzt_add_zupdate
Your plugin function will receive an cfzt_zupdate object as the first parameter.
Example psuedo-code:
function my_status_update($update) { // do something here }
add_action('cfzt_add_zupdate', 'my_status_update')




