要检索分类法中的所有术语,可以使用get_terms
下面是该页面中检索自定义分类法术语名称的示例
$terms = get_terms(\'my_taxonomy\', \'hide_empty=0\');
if ( !empty( $terms ) && !is_wp_error( $terms ) ){
echo "<ul>";
foreach ( $terms as $term ) {
echo "<li>" . $term->name . "</li>";
}
echo "</ul>";
}
以下是返回内容的列表
get_terms
你可以一起工作
term\\u id
名称slugterm\\u组term\\u分类分类描述
父项计数
您必须根据自己的实际需要进行调整。唯一的问题是,没有返回到条款的链接,因此您需要使用get_term_link
获取链接。下面是该页中的一个示例
$terms = get_terms( \'species\', \'hide_empty=0\' );
echo \'<ul>\';
foreach ( $terms as $term ) {
// The $term is an object, so we don\'t need to specify the $taxonomy.
$term_link = get_term_link( $term );
// If there was an error, continue to the next term.
if ( is_wp_error( $term_link ) ) {
continue;
}
// We successfully got a link. Print it out.
echo \'<li><a href="\' . esc_url( $term_link ) . \'">\' . $term->name . \'</a></li>\';
}
echo \'</ul>\';
这应该能帮助你实现目标
至于样式,这是你必须自己解决的问题,因为这不属于本网站的范围。