if you didnt want to type category=3 etc in each piece of meta data, you could jsut enter a number like “3” and then use the param like $posts = get_posts(“category=$param”)
ENDS
Sorted – I’m using a Custom Field in each page called “CategoryNumber” and a value of category=3 or category=2 etc.
In the code I use:
<?php $key=”CategoryNumber”; $param = get_post_meta($post->ID, $key, true); $posts = get_posts( $param ); ?>