我有一个自定义分类法的列表,希望在每个列表之后添加括号(9)中的帖子数量。
<?php
$taxonomy = \'judges\';
$tax_terms = get_terms($taxonomy);
?>
<ul>
<?php
foreach ($tax_terms as $tax_term) {
echo \'<li>\' . \'<a href="\' . esc_attr(get_term_link($tax_term, $taxonomy)) . \'" title="\' . sprintf( __( "View all shows for %s" ), $tax_term->name ) . \'" \' . \'>\' . $tax_term->name.\'</a> </li>\';
}
?>
</ul>
我正在使用此线程上显示的代码
Custom Post Type Category List & Post Count 并查看我应该使用$tax\\u term->count
不幸的是,我不知道如何使用这个。我尝试过以不同的方式和位置将其插入到代码中,但我显然完全无知!
谁能告诉我这个放在哪里,以及如何在括号中显示计数?
提前感谢!