Make WordPress Core


Ignore:
Timestamp:
05/27/2007 07:32:45 PM (19 years ago)
Author:
ryan
Message:

Fix up exporter. Remove more refrences to the categories table. see #4189

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/taxonomy.php

    r5560 r5563  
    3434    $args['object_type'] = $object_type;
    3535    $wp_taxonomies[$taxonomy] = $args;
     36}
     37
     38function wp_count_terms( $taxonomy ) {
     39    global $wpdb;
     40
     41    return $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->term_taxonomy WHERE taxonomy = '$taxonomy'");
    3642}
    3743
Note: See TracChangeset for help on using the changeset viewer.