Nedanstående inom PHP-taggar?
Citat:
global $post;
$args = array( 'taxonomy' => 'product_tag',);
$terms = wp_get_post_terms($post->ID,'product_tag', $args);
$count = count($terms);
if ($count > 0) {
foreach ($terms as $term) {
echo '<div>';
echo $term->description;
echo '</div>';
}
}
|
Ovanstående kod är hämtad från
http://stackoverflow.com/questions/2...s-theme-header och redigerat en aning.