I run a news site. I have writers with columns. I want to assign their posts to a "columns" catagory. I want to turn a catagory into a page. That means I need to take it out of the catagory list and put it into the page list. So first I need to hide the catagory from the catagory list displayed in the header. How do I do that?
<div id="navbarleft">
<ul>
<li><a href="<?php echo get_settings('home'); ?>">News</a></li>
<?php wp_list_pages('title_li=&depth=1&sort_column=menu_order'); ?>
</ul>
</div>