Thanks, MichaelH! I was able to take your code as a starting point and get done what I wanted, which was to show a list of sub-categories for a parent category, with the category description of each below each bullet point! YAY!
Here's my code, in case others are interested in this solution:
<ul id="catlist">
<?php
$categories = get_categories("title_li=&orderby=name&hide_empty=0&child_of=54");
foreach ((array) $categories as $cat) {
$cat_link = '<a href="' . get_category_link($cat->cat_ID) . '" title="' . sprintf(__("View all posts in %s"), $cat->cat_name) . '" ' . $rel . '>' . $cat->cat_name.'</a>';
?>
<li><?php echo $cat_link . '<span>' . $cat->category_description; ?></span></li>
<?php
}
?>
</ul>
I set up styles for the span tags in ul#catlist li span {}
to display:block; forcing the span (with the description) to be a new block.
AWESOME. I love WP. I love this forum!
You all rock!