<?php
if (get_the_terms($post->ID, 'esca')) {
$taxonomy_ar = get_the_terms($post->ID, 'esca');
$output = '<ul>';
foreach ($taxonomy_ar as $taxonomy_term) {
$output .= '<li>'. $taxonomy_term->name .'</li>';
}
$output .= '</ul>';
echo $output;
}
?>Problem being that after they appear to be displaying in either numerical or alphabetical order, and not in the order that I add them from the WP dashboard.
Anybody have any clever or obvious answers??















