在中找到此代码official Wordpress Function Reference:获取一个分类法的所有存档链接术语的简单方法。
列出所有术语,并链接到术语存档,由Interpunt(·)分隔:
$args = array( \'hide_empty=0\' );
$terms = get_terms(\'my_term\', $args);
if ( !empty( $terms ) && !is_wp_error( $terms ) ) {
$count = count($terms);
$i=0;
$term_list = \'<p class="my_term-archive">\';
foreach ($terms as $term) {
$i++;
$term_list .= \'<a href="\' . get_term_link( $term ) . \'" title="\' . sprintf(__(\'View all post filed under %s\', \'my_localization_domain\'), $term->name) . \'">\' . $term->name . \'</a>\';
if ($count != $i) {
$term_list .= \' · \';
}
else {
$term_list .= \'</p>\';
}
}
echo $term_list;
}