Thanx alchymyth!
Works like a charm!
I already found another solution, but i don’t like placing code i don’t understand:
<?php
global $post;
$tmp_post = $post;
$args = array( 'category' => 17 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<div class="entry">
<?php the_content(); ?>
</div>
<?php endforeach; ?>
<?php $post = $tmp_post; ?>
Your solution, i do understand!
Thanx again…