どうにもつい忘れがちな、Tagadelicに、Taxonomy Redirect併用時のウエイトが消えてしまう件のメモ。
かれこれ10ヶ月くらい前に納品したクライアントのタグが機能していないのに、昨日気付いた事 :|
function theme_tagadelic_weighted($terms) {
$output = '';
foreach ($terms as $term) {
$weight = $term->weight;
$attributes = array(
'attributes' => array(
'class' => "tagadelic level$weight",
'rel' => 'tag'
)
);
$output .= l($term->name, taxonomy_term_path($term), $attributes );
}
return $output;
}