Ich fürchte, das ist von Haus aus (noch?) Nicht möglich. Siehe diesen Trac: http://core.trac.wordpress.org/ticket/18106
In ähnlicher Weise spiegelt die Anzahl der Posts auf der Taxonomie-Administrationsseite alle Post-Typen wider . ( Ich bin mir ziemlich sicher, dass es dafür auch ein Trac-Ticket gibt )
http://core.trac.wordpress.org/ticket/14084
Siehe auch diesen verwandten Beitrag .
Neue Lösung
Nachdem ich den folgenden Artikel geschrieben habe, habe ich einen viel besseren Weg (zumindest in dem Sinne, dass Sie mehr tun können) gefunden, die im get_terms()
Aufruf bereitgestellten Filter zu verwenden . Sie können eine Wrapper-Funktion erstellen, die get_terms
einen Filter verwendet und (bedingt) hinzufügt, um die SQL-Abfrage zu bearbeiten (um sie nach Post-Typ einzuschränken).
Die Funktion akzeptiert die gleichen Argumente wie get_terms($taxonomies, $args)
. $args
Nimmt das zusätzliche Argument, post_types
das ein Array von Post-Typen annimmt.
Aber ich kann nicht garantieren, dass alles "wie erwartet" funktioniert (ich denke, die Zählung aufzufüllen). Es scheint nur mit der Standardeinstellung $args
für zu funktionieren 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);
}
Verwendung
$args =array(
'hide_empty' => 0,
'post_types' =>array('country','city'),
);
$terms = wpse57444_get_terms('flag',$args);
Ursprüngliche Umgehung
Inspiriert von dem obigen Trac-Ticket (getestet, und es funktioniert bei mir)
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;
}
Verwendung
$terms = wpse57444_filter_terms_by_cpt('flag',array('country','city'));
oder
$terms = wpse57444_filter_terms_by_cpt('flag','country');