Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/11/2010, 09:13
Avatar de Nekko
Nekko
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Buenos Aires
Mensajes: 3.141
Antigüedad: 16 años, 1 mes
Puntos: 656
Respuesta: Alternar entradas con elementos

Se me ocurre que podrías utilizar:

Código:
<?php if (have_posts()) : ?>
<?php $count = 0; ?>
<?php while (have_posts()) : the_post(); ?>
<?php $count++; ?>
  <?php if ($count == 2) : ?>
          //Codigo de anuncio o lo que quieras
          <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
          <?php the_excerpt(); ?>
   <?php else : ?>
          <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
          <?php the_excerpt(); ?>
  <?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>
Fuente http://www.smashingmagazine.com/2009...ss-loop-hacks/
__________________
Taller para crear themes wordpress desde cero | Presupuestos para trabajos particulares vía MP