맞춤 분류 체계 ( fabric_building_types
) 에서 게시물을받지 못했습니다 . 나는 점점 오전 cat_id
과 cat->name
도하지만 게시물을 얻을 수.
$args = array(
'type' => 'post',
'child_of' => 0,
'parent' => '',
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 1,
'hierarchical' => 1,
'exclude' => '',
'include' => '',
'number' => '',
'taxonomy' => 'fabric_building_types',
'pad_counts' => false
);
$categories = get_categories( $args );
foreach ( $categories as $cat ) {
// here's my code for getting the posts for custom post type
$posts_array = get_posts(
array(
'showposts' => -1,
'post_type' => 'fabric_building',
'tax_query' => array(
array(
'taxonomy' => 'fabric_building_types',
'field' => $cat->cat_ID,
'terms' => $cat->name,
)
)
)
);
print_r( $posts_array );
}
누구든지 나를 도울 수 있습니까 ... 미리 감사합니다
field
세금 쿼리는term_id
,name
또는slug
.