Diğer post içeriği başarıyla her zaman çekip almak olsa bile, ben WordPress özel bir döngü yaptık ve nedense, tarih rasgele aralıklarla atlanır ediliyor.
Herhangi bir fikir, tamamen bana manidar çünkü!
Örneğin, bir mesaj listesi ve zaman tarih eksik:
- Tarih
- Tarih
- Tarih yok
- Tarih
- Tarih
- Tarih yok
- Tarih
- Tarih yok
- Tarih yok
- Tarih yok
İşte kodu tüm döngüler dahil olduğunu:
<?php query_posts('category_name=News&posts_per_page=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<article>
<div>
<p>PUBLISHED: <?php the_date(); ?></p>
<h4><a class="news_title_link" href="<?php the_permalink();?>"><?php the_title();?></a></h4>
<?php the_excerpt(); ?>
<br />
<a href="<?php the_permalink();?>">Read more</a>
</div>
<div>
<?php if ( function_exists( 'get_the_image' ) ) { get_the_image(array('default_size' => 'thumbnail','default_image' => '/wp-content/uploads/2010/06/default-thumb.jpg'));} ?>
</div>
</article>
<?php endwhile; ?>
<?php endif;?>