and “usertest” will be a category?
Right now you’re using categories to order your reviews geographically … do you wish to add a new category called “usertest”?
That might not be so hard, since you can use categories interchangeably, so it can be in usertest AND utrecht, for example.
Simple: open your header.php and find the bit where it says “wp_list_pages”.
I’m sure there is a < ul > < li > home </ li> just before that. So, you add another item like that, only make it link to ?cat=X, where X is the ID of your usertest category.
Then open index.php.
You’ll find the loop pretty far at the top, something with “if havepost while havepost : thepost etc.
So, before that, add
<?php query_posts('cat=-X');??>
where X is the ID of your usertest category.
This will exclude the usertest category from your home page.