Hi,
Here is the code to display total number of categories on wordpress blog:
$numcats = $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->categories”);
if (0 < $numcats) $numcats = number_format($numcats);
echo “My blog have “.$numcats.” categories”;
Thanks,
Shane G.
Popularity: 1%








