创建一个带有slug“brand”的页面。然后创建一个自定义页面模板并编写所需的循环以返回“品牌”分类法的术语。将该页面模板分配到“品牌”页面。
访问此codexpage 了解如何编写页面模板。
下面是一个如何列出自定义分类法术语的示例:
$args = array( \'hide_empty=0\' ); //this will make sure no term is hidden. Even if empty term.
$terms = get_terms( \'my_term\', $args ); // replace \'my_term\' with your taxonomy.
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="\' . esc_url( get_term_link( $term ) ) . \'" alt="\' . esc_attr( sprintf( __( \'View all post filed under %s\', \'my_text_domain\' ), $term->name ) ) . \'">\' . $term->name . \'</a>\';
if ( $count != $i ) {
$term_list .= \' · \';
}
else {
$term_list .= \'</p>\';
}
}
echo $term_list;
}
以下是有关
get_terms()