最新发布日期

时间:2010-08-24 00:17:37

标签: wordpress date

我怎样才能达到类似的目的:

http://anidemon.com/latest-episodes/

最新帖子按当天标题排列。我不是关于“查看”计数。

我该怎么做?

1 个答案:

答案 0 :(得分:1)

Virendar,

使用get_posts()可以解决您的问题,如下所示......

    <ul>
 <?php
 $myposts = get_posts('orderby=date&order=DESC');
 $tempdate = '';
 foreach($myposts as $post) {
  $postDate = strtotime( $post->post_date );
  if ($tempdate == '' || $postDate < $tempdate) {
    $tempdate = $postDate;
    echo '<h3>Display Date Title here</h3>';
  }
 ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
 <?php } ?>
 </ul> 

希望这有帮助!请注意我没有包含任何CSS格式。