0
我正在嘗試獲取自定義帖子類型循環中單個帖子的類別的未格式化列表(最好是一個slug)。這個列表最終將作爲一個div的類($CATEGORYSLUGSWILLEVENTUALLYGOHERE
)。在自定義帖子類型中獲取單個帖子的類別
我發現了幾種不同的方法來獲取一個自定義帖子類型的所有類別的列表,但不是一個特定的單個類別的列表。這是我到目前爲止有:
<?php $projects_loop = new WP_Query(array('post_type' => 'projects', 'orderby' => 'menu_order')); ?>
<?php while ($projects_loop->have_posts()) : $projects_loop->the_post(); ?>
<div class="box <?php $CATEGORYSLUGSWILLEVENTUALLYGOHERE; ?>">
<div class="port-item-home">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('portfolio-home'); ?></a>
<p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
</div>
</div>
<?php endwhile; ?>
而且這裏是我到目前爲止已經試過讓類別列表:
<?php
$args = array(
'orderby' => 'name',
'parent' => 0,
'taxonomy' => 'project-type'
);
$categories = get_categories($args);
echo '<p> '.print_r(array_values($categories)).'something</p>'
?>
我有它返回數組 - 但陣列表明這將顯示所有類別,而不是與特定帖子有關的類別。
我也試過:
<?php
//list terms in a given taxonomy (useful as a widget for twentyten)
$taxonomy = 'project-type';
$tax_terms = get_terms($taxonomy);
?>
<?php
foreach ($tax_terms as $tax_term) {
echo $tax_term->name;
}
?>
而這也顯示所有類別,而不是有關職位的人。
有什麼建議?