Using Taxonomies with Vote It Up plugin chart [closed]

Use get_the_term_list() to print the assigned terms.

Example:

    echo '<div class="votecount">' . /* stripped */ . '</div>';
    echo echo get_the_term_list( $postdat->ID, 'taxonomyname', 'Taxonomy Label: ', ', ', '' );
    echo '</div>';

Replace 'taxonomyname' and 'Taxonomy Label: ' with the values you actually need.