mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
Add ignore_empty option to wp_count_terms(). see #4189
git-svn-id: http://svn.automattic.com/wordpress/trunk@5596 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e2a9845a94
commit
facc7245fa
@ -39,10 +39,18 @@ function register_taxonomy( $taxonomy, $object_type, $args = array() ) {
|
||||
$wp_taxonomies[$taxonomy] = (object) $args;
|
||||
}
|
||||
|
||||
function wp_count_terms( $taxonomy ) {
|
||||
function wp_count_terms( $taxonomy, $args = array() ) {
|
||||
global $wpdb;
|
||||
|
||||
return $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->term_taxonomy WHERE taxonomy = '$taxonomy'");
|
||||
$defaults = array('ignore_empty' => false);
|
||||
$args = wp_parse_args($args, $defaults);
|
||||
extract($args);
|
||||
|
||||
$where = '';
|
||||
if ( $ignore_empty )
|
||||
$where = 'AND count > 0';
|
||||
|
||||
return $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->term_taxonomy WHERE taxonomy = '$taxonomy' $where");
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user