在页面中显示类别图像

时间:2013-01-21 11:14:14

标签: wordpress plugins

我使用Taxonomy Images插件存储每个类别的图像。现在我想显示类别图像。但我找不到任何设置来显示这些图像。是否有更好的插件用于显示带有类别名称的类别图像。

1 个答案:

答案 0 :(得分:0)

要显示类别图像,请使用:

$terms = apply_filters( 'taxonomy-images-get-terms', '' );
if ( ! empty( $terms ) ) {
    print '<ul>';
    foreach( (array) $terms as $term ) {
        print '<li><a href="' . esc_url( get_term_link( $term, $term->taxonomy ) ) . '">' . wp_get_attachment_image( $term->image_id, 'detail' ) . '</li>';
    }
    print '</ul>';
}

默认显示“类别”