/wp-content/plugins/ directoryIf you think that widgets are lame: edit the template file that you want the archives to show on:
Displaying archives<li>
<h2>Archives</h2>
<ul>
<?php
if (function_exists('wp_dtree_get_archives')){
wp_dtree_get_archives();
}else{
wp_get_archives('type=monthly');
}
?>
</ul>
</li>
Displaying categories:
<li>
<h2>Categories</h2>
<ul>
<?php
if (function_exists('wp_dtree_get_categories')){
wp_dtree_get_categories();
}else{
wp_list_categories('show_count=1');
}
?>
</ul>
</li>
Displaying pages:
<li>
<h2>Pages</h2>
<ul>
<?php
if (function_exists('wp_dtree_get_pages')){
wp_dtree_get_pages();
}else{
wp_list_pages();
}
?>
</ul>
</li>
Displaying links:
<li>
<h2>Links</h2>
<ul>
<?php
if(function_exists('wp_dtree_get_links')){
wp_dtree_get_links();
}else{
wp_list_bookmarks();
}
?>




