Não estou recebendo as postagens sob taxonomia personalizada ( fabric_building_types
). Estou recebendo cat_id
e cat->name
também não consigo obter as postagens.
$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 );
}
Alguém por favor pode me ajudar ... Agradecemos antecipadamente
posts
categories
custom-taxonomy
taxonomy
get-posts
Parth Kumar
fonte
fonte
field
em uma consulta fiscal sãoterm_id
,name
ouslug
.Respostas:
Sua consulta fiscal é incorreta,
field
deve ser o campo que deseja consulta em:term_id
,name
ouslug
-fonte
Você deve usar
get_terms()
taxonomias quando puder.Link para Codex : http://codex.wordpress.org/Function_Reference/get_terms
fonte
isso deve ser funciona.
fonte
Obtendo Postagens Designadas à Taxonomia Atual
Você pode adicionar o código abaixo em taxonomy-your_tax.php
fonte