I'm using the link plugin to link images to categories, and I'm printing icons next to the post title so (code below) but it brings all related categories and I wanted to limit to just one can someone help me ?:
<?php
print apply_filters( 'taxonomy-images-list-the-terms', '', array(
'attr' => array(
'alt' => '',
'class' => 'img-responsive',
'src' => '',
'title' => '',
),
'before' => '<div class="">',
'after' => '</div>',
'before_image' => '',
'after_image' => '',
'image_size' => 'detail',
'post_id' => get_the_ID()
) );
?>