Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/07/2013, 11:57
laura_moreno14
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Sobre wp_query; query_posts y loop principal de wordpress

El metodo que te comentaba en la respuesta anterior hace exactamente eso.

Te pongo un ejemplo completo, por si no lo has entendido bien.

Código PHP:
Ver original
  1. <div id="posts-archives">
  2. <?php
  3. $x = 0;// declaramos la variable que hara de contador
  4. $the_query = new WP_Query(array(
  5.     'orderby' => 'post_date',
  6.     'order' => 'desc',
  7.         'posts_per_page' => 10,
  8.          );
  9. );
  10. while ($the_query->have_posts()): $the_query->the_post();
  11. //sumamos 1 al contador antes de mostrar cada post
  12. $x = $x + 1;
  13. ?>
  14. <div class="post">
  15. <div class="thumbnail"><a href="<?php the_permalink() ?>" title="<?php the_title() ?>"><?php if ( has_post_thumbnail() ) { the_post_thumbnail($img); } ?> </a>
  16. </div>
  17. <div class="excerpt"><span class="title"><a href="<?php the_permalink() ?>" title="<?php the_title() ?>"><?php the_title() ?></a></span><span class="date"><?php echo get_the_date(); echo ' | '; the_author() ?></span></div></div><!-- endrecentposts-->
  18. <?php
  19. //despues del post comprobamos el contador, si es igual a 4, muestras el codigo del anuncio
  20. if ($x == 4) { echo '<div><p>Aqui codigo del anuncio.</p></div>';}
  21. endwhile;
  22. wp_reset_query();
  23. ?>
  24. </div>