While using WordPress 2.6.3 to build a news site, I tried to use wp_list_categories() to make a lost of my categories in my sidebar. However, while I certainly have 5 of them, this command returns "No categories."
I originally used the 2.7 beta, and thought it was a bug, however the change of version did not affect the problem.
Here's the exact code I used:
<div id="menu">
<div class="menutop"><span class="header">Menu</span></div>
<span class="header">Posts uit:</span>
<ol>
<li><?php wp_list_categories(); ?></li>
</ol>
<div id="menufoot"></div>
</div>
It was used on this page:
http://86.91.64.66/Subs/Kandinsky_WP/index.php
I already searched Google and this site for answers, but the topics regarding this question were 4 months old, and unanswered.