这个代码是95%的工作,但我需要一些帮助的最后一部分。我正在尝试从Wordpress中获取所有的自定义分类和分类术语,并将它们显示在一个无序列表中。下面是我的代码:
$args=array('public' => true, '_builtin' => false);
$output = 'names';
$operator = 'and';
$taxonomies=get_taxonomies($args,$output,$operator);
if ($taxonomies) {
foreach ($taxonomies as $taxonomy ) {
echo '<a>'. $taxonomy. '</a>';
$terms = get_terms("color");
$count = count($terms);
if ( $count > 0 ){
echo '<ul>';
foreach ( $terms as $term ) {
echo "<li>" . $term->name . "</li>";
}
echo "</ul>";
}
}
}
问题出在第8行,它显示的是$terms = get_terms("color");
。我写这篇文章是为了测试代码,但问题是Wordpress现在会为每个分类法显示来自分类法“颜色”的术语。
我如何修改这段代码,以使Wordpress显示的每个分类法都能显示该分类法的相应术语列表?
发布于 2012-03-31 09:13:04
$terms = get_terms($taxonomy);
在本例中,名称不是对象,而只是分类法名称的数组($output =‘$taxonomy’)。因此,$taxonomy->name不起作用。
请参见:
http://codex.wordpress.org/Function_Reference/get_taxonomies http://codex.wordpress.org/Function_Reference/get_terms
发布于 2012-03-30 17:33:29
$terms = get_terms($taxonomy->name);
?
https://stackoverflow.com/questions/9947348
复制