0
我想在div風格背景(xxxxx)中設置分類圖像url。我使用「分類圖像」插件,但wp_get_attachment_image
不起作用。分類圖像div背景
<?php
$terms = apply_filters('taxonomy-images-get-terms', '', array(
'taxonomy' => 'categoria_proyectos',
));
if (! empty($terms)) {
print '';
foreach ((array) $terms as $term) {
print '
<a href="' . esc_url(get_term_link($term, $term->taxonomy)) . '">
<div class="style="background-image: url(xxxxxx); ">
</div>
</a>';
}
}
?>