<?php
$category_id = get_cat_ID('tuin');
$q = "cat=" . $id; query_posts($q.'&posts_per_page=3');
query_posts($q);
if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_title(); ?><?php the_excerpt(); ?>
<?php endwhile; endif; ?>
trying different things all failed, maybe i’m forgetting something. I can’t find it.
Tried your code, doesn’t seem to load any post when i’m doing that.