나는 이것이 기본적으로 가능하지 않다는 것을 두려워합니다 (아직?). 이 트랙을보십시오 : http://core.trac.wordpress.org/ticket/18106
마찬가지로 분류 체계 관리 페이지에서 게시물 수는 모든 게시물 유형을 반영 합니다 . ( 저도 trac 티켓이 있다고 확신합니다 )
http://core.trac.wordpress.org/ticket/14084
이 관련 게시물 도 참조하십시오 .
새로운 솔루션
아래에 하나를 작성한 후, get_terms()
전화에 제공된 필터를 사용하는 것이 훨씬 더 나은 방법을 발표했습니다 (더 많은 것을 할 수 있다는 의미에서) . get_terms
SQL 쿼리를 조작하기위한 필터를 사용 하고 조건부로 추가 하는 랩퍼 함수를 작성할 수 있습니다 (게시 유형별로 제한하기 위해).
이 함수는와 동일한 인수를 사용 get_terms($taxonomies, $args)
합니다. $args
추가 인수 post_types
는 포스트 유형의 배열을 취합니다.
그러나 나는 모든 것이 '예상대로'작동한다는 것을 보증 할 수 없습니다 (나는 패딩을 생각하고 있습니다). 에 $args
대한 기본값을 사용하여 작동하는 것 같습니다 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);
}
용법
$args =array(
'hide_empty' => 0,
'post_types' =>array('country','city'),
);
$terms = wpse57444_get_terms('flag',$args);
원래 해결 방법
위의 trac 티켓에서 영감을 얻어 (테스트를 거쳐 나에게 적합 함)
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;
}
용법
$terms = wpse57444_filter_terms_by_cpt('flag',array('country','city'));
또는
$terms = wpse57444_filter_terms_by_cpt('flag','country');