IMPORTANT! Please deactivate before upgrading, then re-activate the plugin.
Unpackage contents to wp-content/plugins/ so that the files are in a collapsing-categories directory.
Activate the plugin, then simply go the Presentation > Widgets section and drag over the Collapsing Categories Widget.
Activate the plugin, then insert the following into your template: (probably in sidebar.php). See the Options section for more information on specifying options.
<?php
echo "<ul>\n";
if (function_exists('collapsCat')) {
collapsCat();
} else {
wp_get_categories(your_options_here);
}
echo "</ul>\n";
?>




