WordPressのカテゴリーリストのrel属性が、HTML5だとvalidじゃないよと言われて、あまり良い気分じゃないんで、簡単に取り除いちゃいます。
テーマのfunctions.phpに
add_filter('the_category', 'remove_rel');
function remove_rel( $text ) {
$text = str_replace('rel="category tag"', "", $text);
return $text;
}
こんなんでおk。