Wordpress - Affichage posts page d'acceuil

Nouveau WRInaute
Bonjour à tous,
J'aimerais bidouiller index.php de mon thème wordpress pour avoir cet affichage :
- Le premier post ( en entier )
- Les 9 ou 14 posts suivants affichés mais seulement partiellement.

Est-ce possible ?
 
WRInaute passionné
Bonsoir,

Un truc du genre (ici au bout du 4eme post on coupe le post et affiche un "Lire la suite..."):
Code:
			<?php if (have_posts()) : ?>
            <?php $postCount=0; ?>       
                <?php while (have_posts()) : the_post(); $loopcounter++;?>
                <?php $postCount++;?>
                <div class="post">
					<?php if ($postCount<5):?>  
                    <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Lien vers <?php the_title(); ?>"><?php the_title(); ?></a></h1>
                    <?php else : ?>
                    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Lien vers <?php the_title(); ?>"><?php the_title(); ?></a></h2> 
                    <?php endif; ?>
                    <span class="post-date">Par <?php the_author() ?> le <?php the_time('j F Y') ?> <?php if(function_exists('the_views')) { the_views(); } ?></span>
                            
                    <?php if ($postCount<5) the_content('Lire la suite &raquo;'); else { the_excerpt(); _e('<p><a href="'.get_permalink().'">Lire la suite...</a></p>'); } ?>
 
Discussions similaires
Haut