在循环外显示分类术语但TAXONOMY IMAGE不起作用

时间:2017-09-06 15:49:43

标签: php wordpress

我试图从我的帖子中显示分类法艺术家的一些术语。它在我的侧边栏上,在循环外,显示名称,图像,链接和帖子数量。它运作得很好,唯一的问题是图像不起作用:)有人可以帮助我吗?

PS:我正在使用插件分类图像添加艺术家的缩略图。

<?php $term_list = wp_get_post_terms($post->ID, 'artistas', 'taxonomy-images-get-terms'); $processed_terms=array();
    foreach ($term_list as $term)
    {
    if (!empty($term->image_id))
    {
    $image_src=wp_get_attachment_image_src($term->image_id,'archive-thumbnail');
    $image_src=$image_src[0];
    }
    else
    {
    $image_src='http://sites.dammit.com.br/2016dmt/files/2017/08/camila-150x150.jpg';
    }

    $processed_terms[]=array(
    'name'=>$term->name,
    'description'=>$term->description,
    'url'=>get_term_link($term),
    'image'=>$image_src,
    'posts'=>$actual_term_posts,
    'count'=>$term->count,
    'post_count' => 1
    );
    }
    foreach ($processed_terms as $term) {
    echo "<div class='col-md-6 col-sm-4 col-xs-2 artista-index'>
    <a href='{$term['url']}' title='{$term['name']}'><img src='{$term['image']}' alt='{$term['name']}' class='effect8'></a>
    <div class='reviews' style='text-align:right;'>{$term['count']} ".($term['count']==1?'review':'reviews')."</div>
    <small class='nome'>
    <a href='{$term['url']}' title='{$term['name']}'>{$term['name']} <i class='fa fa-chevron-right'></i></a>
    </small>
    </div>";
    } ?>

0 个答案:

没有答案