0
我想顯示具有特定分類的圖像的所有術語。我使用get_term()函數獲得所有術語詳細信息。如何在wordpress中獲得術語/分類圖像?
但它顯示所有圖像相同的路徑。 http://localhost/mototrader/wp-includes/images/media/default.png
我怎麼能得到與該分類相關的圖像的實際路徑。
在此先感謝。
我想顯示具有特定分類的圖像的所有術語。我使用get_term()函數獲得所有術語詳細信息。如何在wordpress中獲得術語/分類圖像?
但它顯示所有圖像相同的路徑。 http://localhost/mototrader/wp-includes/images/media/default.png
我怎麼能得到與該分類相關的圖像的實際路徑。
在此先感謝。
您可以通過這種方式也
<?php
$cat_id = get_query_var('cat');
$catlist = get_categories('hide_empty=0&child_of=' . $cat_id);
echo "<ul>";
foreach($catlist as $categories_item)
{
echo '<h1><a href="' . get_category_link($categories_item->term_id) . '" title="' . sprintf(__("View all products in %s"), $categories_item->name) . '" ' . '>' . $categories_item->name.'</a> </h1> ';
echo '<div class="categoryoverview clearfix">';
$terms = apply_filters('taxonomy-images-get-terms', '');
if (! empty($terms)) {
foreach((array) $terms as $term) {
if($term->term_id == $categories_item->term_id) {
print '<a href="' . esc_url(get_term_link($term, $term->taxonomy)) . '">' . wp_get_attachment_image($term->image_id, 'thumbnail');
echo '</a>';
}
}
echo '<p>'. $categories_item->description; echo '</p>';
}
echo '</div>';
}
echo "</ul>";
你怎麼連圖像設置爲分類試試?我不認爲這是標準的WP。所以,如果你知道你是如何設置它的,你將能夠找到,如何得到它。 – Omnisite