我会问我如何为自定义分类法的每个术语分配类。 我已经使用CPT UI插件(WordPress)创建了自定义分类法,并使用以下代码显示这些分类:
.wpcf7-submit:hover {
color: black !important;
background: white !important;
border: 1px solid !important;
}
现在,我会使用每个术语的css样式,但我需要为每个分类术语指定一个不同的类。
谢谢
答案 0 :(得分:0)
您可以在foreach中使用key并在类名中添加$key
。它总是会返回新的类,例如someclass_0, someclass_1
:
foreach ( $terms as $key => $term ) {
$term_link = get_term_link( $term, 'color' );
if( is_wp_error( $term_link ) )
continue;
echo '<a href="' . $term_link . '" class="someclass_'.$key.'">' . $term->name . '</a>';
}