Je ne reçois pas les messages sous taxonomie personnalisée ( fabric_building_types
). Je reçois cat_id
et cat->name
aussi mais pas en mesure d'obtenir les messages.
$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 );
}
Quelqu'un peut-il m'aider s'il vous plaît ... Merci d'avance
field
une requête d'impôt sontterm_id
,name
ouslug
.