thanks for the help,
in fact i changed the code to display 1 post then some contest and then 4 else posts (5 posts in total)
i suceeded to do the first part : display 1 post and after i got a wierd error, here is my code :
‘
<?php $wp_query->set( ‘showposts’, ‘1’ ); ?>
<?php query_posts( ” ); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<div id=”postmetadata”><?php the_time(‘F jS, Y’) ?>. Posted by <?php the_author() ?> <?php edit_post_link(‘Edit’,'[‘,’]’); ?>
Read more about : <?php the_category(‘,’) ?></div>
<div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
<div id=”metadata_bas”>“>permanent link <?php comments_popup_link(‘Post a Comment’, ‘1 Comment’, ‘% Comments’); ?></div>
</div>
<?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php next_posts_link(‘« Previous Entries’) ?></div>
<div class=”alignright”><?php previous_posts_link(‘Next Entries »’) ?></div>
</div>
<?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.
<?php include (TEMPLATEPATH . “/searchform.php”); ?>
<?php endif; ?>
<?php $posts = get_posts( “numberposts=4&offset=1? ); ?>
<?php if( $posts ) : ?>
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<div id=”postmetadata”><?php the_time(‘F jS, Y’) ?>. Posted by <?php the_author() ?> <?php edit_post_link(‘Edit’,'[‘,’]’); ?>
Read more about : <?php the_category(‘,’) ?></div>
<div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
<div id=”metadata_bas”>“>permanent link <?php comments_popup_link(‘Post a Comment’, ‘1 Comment’, ‘% Comments’); ?></div>
</div>
<?php endforeach; ?>;
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
‘