I am trying to exclude category 250 and it's child. Can someone help. This is how my code looks like
<?php
$postslist = get_posts('numberposts=6&order=DESC');
foreach ($postslist as $post) :
setup_postdata($post);
?>
<div id="time">
<?php the_date(); ?>
</div>
<dt><a href="<?php echo get_permalink() ?>" rel="bookmark" title="<?php _e('Read more about:','myTheme')?> <?php the_title(); ?>">
<?php the_title(); ?>
</a> </dt>
<?php endforeach; ?>
</div>
How can i do this on this line?
$postslist = get_posts('numberposts=6&order=DESC');
Please help