Temo che questo non sia possibile in modo nativo (ancora?). Vedi questo trac: http://core.trac.wordpress.org/ticket/18106
Allo stesso modo nella pagina di amministrazione della tassonomia il conteggio dei post riflette tutti i tipi di post. ( Sono abbastanza sicuro che ci sia anche un biglietto trac per quello )
http://core.trac.wordpress.org/ticket/14084
Vedi anche questo post correlato .
Nuova soluzione
Dopo aver scritto quello qui sotto, ho rilasciato un modo molto migliore (alteast nel senso che puoi fare di più) è usare i filtri forniti nella get_terms()
chiamata. È possibile creare una funzione wrapper che utilizza get_terms
e (in modo condizionale) un filtro per manipolare la query SQL (per limitare il tipo di posta).
La funzione accetta gli stessi argomenti di get_terms($taxonomies, $args)
. $args
accetta l'argomento aggiuntivo di post_types
cui accetta una matrice | tipi di post.
Ma non posso garantire che tutto funzioni "come previsto" (sto pensando di riempire il conteggio). Sembra funzionare usando solo il predefinito $args
for get_terms
.
function wpse57444_get_terms( $taxonomies, $args=array() ){
//Parse $args in case its a query string.
$args = wp_parse_args($args);
if( !empty($args['post_types']) ){
$args['post_types'] = (array) $args['post_types'];
add_filter( 'terms_clauses','wpse_filter_terms_by_cpt',10,3);
function wpse_filter_terms_by_cpt( $pieces, $tax, $args){
global $wpdb;
// Don't use db count
$pieces['fields'] .=", COUNT(*) " ;
//Join extra tables to restrict by post type.
$pieces['join'] .=" INNER JOIN $wpdb->term_relationships AS r ON r.term_taxonomy_id = tt.term_taxonomy_id
INNER JOIN $wpdb->posts AS p ON p.ID = r.object_id ";
// Restrict by post type and Group by term_id for COUNTing.
$post_types_str = implode(',',$args['post_types']);
$pieces['where'].= $wpdb->prepare(" AND p.post_type IN(%s) GROUP BY t.term_id", $post_types_str);
remove_filter( current_filter(), __FUNCTION__ );
return $pieces;
}
} // endif post_types set
return get_terms($taxonomies, $args);
}
uso
$args =array(
'hide_empty' => 0,
'post_types' =>array('country','city'),
);
$terms = wpse57444_get_terms('flag',$args);
Soluzione originale
Ispirato al precedente biglietto trac, (testato e funziona per me)
function wpse57444_filter_terms_by_cpt($taxonomy, $post_types=array() ){
global $wpdb;
$post_types=(array) $post_types;
$key = 'wpse_terms'.md5($taxonomy.serialize($post_types));
$results = wp_cache_get($key);
if ( false === $results ) {
$where =" WHERE 1=1";
if( !empty($post_types) ){
$post_types_str = implode(',',$post_types);
$where.= $wpdb->prepare(" AND p.post_type IN(%s)", $post_types_str);
}
$where .= $wpdb->prepare(" AND tt.taxonomy = %s",$taxonomy);
$query = "
SELECT t.*, COUNT(*)
FROM $wpdb->terms AS t
INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id
INNER JOIN $wpdb->term_relationships AS r ON r.term_taxonomy_id = tt.term_taxonomy_id
INNER JOIN $wpdb->posts AS p ON p.ID = r.object_id
$where
GROUP BY t.term_id";
$results = $wpdb->get_results( $query );
wp_cache_set( $key, $results );
}
return $results;
}
uso
$terms = wpse57444_filter_terms_by_cpt('flag',array('country','city'));
o
$terms = wpse57444_filter_terms_by_cpt('flag','country');