Hi,
I want to show total number of categories in my wordpress theme. Can anyone tell me the code to show it or any plugin which can do this job?
Hi,
I want to show total number of categories in my wordpress theme. Can anyone tell me the code to show it or any plugin which can do this job?
<?php
$category_count = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->term_taxonomy WHERE taxonomy = 'category'");?>
<p><?php echo 'category count is ' . $category_count; ?></p>
Synthesized from example in the Codex article, wpdb.
thnx for the help ..
This topic has been closed to new replies.