我在WordPress中製作了一個自定義循環,出於某種原因,日期會隨機跳過,儘管其他文章內容每次都能成功引入。WordPress the_date跳過循環內的間隔
任何想法,因爲它完全讓我莫名其妙!
例如,文章列表,當日期丟失:
- 日期
- 日期
- 沒有日期
- 日期
- 日期
- 沒有日期
- 日期
- 不是TE
- 沒有日期
- 沒有日期
下面是代碼,包括所有的循環:
<?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;?>
隨機,你的意思是每次刷新後發佈的日期與前一頁加載的時間完全不同? – BoltClock 2010-07-19 11:11:32
不,它們按我在列表中指定的順序排列。我應該改變這個問題,因爲它是誤導性的。 – theorise 2010-07-19 11:13:25