Tagadelicのテーマ | Color Balance

Tagadelicのテーマ

どうにもつい忘れがちな、T­agadelicに、Taxo­nomy 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;
}

http://drupal.org/node/441566