Помогите, пожалуйста!
<?php
$terms = apply_filters( 'taxonomy-images-get-terms', '' );
if ( ! empty( $terms ) ) {
print '<ul>';
foreach( (array) $terms as $term ) {
echo '<li><a href="' . esc_url( get_term_link( $term, $term->taxonomy ) ) . '">'. $term->name . '</a>';
print '<p>' . wp_get_attachment_image($term->image_id,$size = 'array(200,175)', 'detail') . '</p>';
}
print '</ul>';
}
?>