如何在我的网页上显示分类而不是类别? 时间:2012-01-17 作者:neha 我想在我的博客主页上显示分类法而不是类别。我能做些什么来实现这一点? 3 个回复 SO网友:Jared 我想你要找的是:http://codex.wordpress.org/Function_Reference/get_terms如何获取全部的示例my_taxonomy 术语,并在无序列表中重复它们。 $terms = get_terms( "my_taxonomy" ); $count = count( $terms ); if ( $count > 0 ){ echo "<ul>"; foreach ( $terms as $term ) { echo "<li>$term->name</li>"; } echo "</ul>"; } SO网友:Keebod @nehaIn Jared发布的代码,请看这行-->echo "<li>$term->name</li>这就是将输出制成列表的原因。如果有人建议使用该代码,您应该提到您希望如何将其输出?比如,为了一个大标题-->echo "<h1>$term->name</h1>或,放入块引号-->echo "<blockquote>$term->name</blockquote>或者,作为常规段落-->echo "<p>$term->name</p>您希望它如何显示? SO网友:kroma Try wp_list_categories(\'taxonomy=operating_system\'); 结束 文章导航