Ich habe einen benutzerdefinierten Beitragstyp namens portfolio
und eine benutzerdefinierte Taxonomie namens build-type
(als Kategorien)
Ich versuche, portfolio
Beiträge nach build-type
ID abzufragen , z. B. alle Portfolio-Beiträge in "Hotels" (id = 4 für diese Taxonomie).
// gets the ID from a custom field to show posts on a specific page
$buildType = get_post_meta($post->ID, 'build_type_id', true);
// run query
query_posts(array(
'post_type' => 'portfolio',
'showposts' => -1,
'tax_query' => array(
'taxonomy' => 'build-type',
'terms' => $buildType,
'field' => 'term_id'
),
'orderby' => 'title',
'order' => 'ASC'
));
Derzeit werden alle portfolio
Posts aufgerufen und nicht nur die mit der build-type
ID
Für 'field' => 'term_id'
soll ich verwenden term_id
, tag_ID
, id
oder etwas anderes?
Weiß jemand, wie man das zum Laufen bringt?
Danke im Voraus!