• 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?

Viewing 2 replies - 1 through 2 (of 2 total)
  • <?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.

    Thread Starter altafsayani

    (@altafsayani)

    thnx for the help ..

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to show total number of Categories?’ is closed to new replies.