after i upgraded to 2.3 i am having a hard time figuring out how to list the categories and there descriptions. Can anyone help me figure this one out?
without using wp_list_categories
after i upgraded to 2.3 i am having a hard time figuring out how to list the categories and there descriptions. Can anyone help me figure this one out?
without using wp_list_categories
Well this is the ghetto way to do it. I figured it out.
<?php
$thecats = $wpdb->get_results("SELECT * FROM $wpdb->terms,$wpdb->term_taxonomy WHERE $wpdb->term_taxonomy.term_id = $wpdb->terms.term_id");
foreach ($thecats as $thecat) {
echo $thecat->name;
echo $thecat->description;
}
?>
Will list all of the category names with the descriptions below it.
Can you share? Thanks.
Try this topic:
http://wordpress.org/support/topic/151935?replies=4#post-832204
This topic has been closed to new replies.