It looks like you are intermixing a page and a category. Have a look at http://codex.wordpress.org/Pages
You can create a page template that loads a certain category. I have a file in my theme folder called archives.php, that file's code looks like
PHP Code:
<?php
/*
Template Name: Archive Page
*/
?>
<?php get_header(); ?>
<div id="container">
<div id="content-arch">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div>
<h2 class="post-title-single"><?php the_title(); ?></h2>
<div class="post-entry">
<?php the_content(); ?>
<div style="clear:both;padding:0 1em 0 0;float:left;">
<h3 style="margin-bottom:0;">Categories</h3>
<ul style="margin-top:0;list-style-type:square;">
<?php wp_list_cats('sort_column=name&optioncount=1&feed=RSS&hierarchical=1'); ?>
</ul>
</div>
<div style="width:25%;padding:0;margin-left:1em;float:left;">
<h3 style="margin-bottom:0;">Monthly Archives</h3>
<ul style="margin-top:0;list-style-type:square;height:15em;overflow:auto;">
<?php wp_get_archives('type=monthly&show_post_count=1'); ?>
</ul>
<h3 style="margin-bottom:0;">Author Archives</h3>
<ul style="margin-top:0;list-style-type:square;">
<?php wp_list_authors('optioncount=1&exclude_admin=0&show_fullname=0&html=1');?>
</ul>
</div>
<div style="float:right;width:25%;">
<script type="text/javascript"><!--
//--></script>
</div>
<div style="clear:both;"></div>
<h3>Tags</h3>
<div style="padding:0.25em;"><?php wp_tag_cloud('order=ASC&orderby=name&number=0'); ?></div>
<div style="clear:both;"></div>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
</div>
<?php endwhile; endif; ?>
</div>
</div>
<?php get_footer(); ?>
I have page called archive, which only has a title, and the page template is Archive page. The content of the page on the edit page screen is blank, because it is generated by archives.php. Pages themselves cannot have php (unless you have a plug in). I would make a project page template that grabs the project categories. If new categories will only made for project, not random thoughs (for example), you could grab all categories and excude non-project categories.
Bookmarks