hay un código para wordpress el cual permite agregar en index dos post diferentes como se explica en el enlace WordPress | como mostrar el primer post con un estilo diferente | y me gustaría agregar o modifiocar el codigo para que no sean 2 si no 5
Código PHP:
<?php $postnum = 0; if (have_posts()) : ?>
<?php while (have_posts()) : $postnum = $postnum + 1; the_post(); ?>
<?php if ($postnum == 1 ) { ?>
<!-- HTML del post destacado -->
<?php } ?>
<?php if ($postnum >= 2 ) { ?>
<!-- HTML de los siguientes post -->
<?php } ?>
<?php endwhile; ?>
gracias de antemano