How might I add the next highest category level when viewing posts in the main view? This would help up greatly.
<?php
$parent = DiscussHelper::getTable('Category');
$parent->load($category->parent_id);
echo $parent->title;
?>