我想在主页上输出最近3天的帖子。
像这样:
2012年3月30日
post 1
post 2
post 3
2012年3月29日
post 1
post 2
post 3
2012年3月28日
post 1
post 2
post 3
我试过:
2012年3月30日,我有5个职位
2012年3月29日,我有4个职位
2012年3月28日,我有3个职位
因此,第三天缺少2个帖子。
我还想在归档页面上使用它。
每页3天。
在第2页,接下来的3天。
这是我的循环文件
<div id="post-<?php the_ID(); ?>" class="entry-box">
<?php $embed = get_post_meta(get_the_ID(), \'tj_video_embed\', TRUE); ?>
<?php if($embed && (get_option(\'videoplus_fancybox_enable\') == \'on\')){
$embed_url = \'\';
$mode = \'~http://[\\d\\w\\s:/.]*~iS\';
preg_match($mode,$embed,$embed_url);
?>
<a href="<?php echo $embed_url[0];?>" rel="bookmark" class="various fancybox.iframe">
<?php } else { ?>
<a href="<?php the_permalink(); ?>" rel="bookmark">
<?php } ?>
<?php if(has_post_thumbnail()){?>
<?php the_post_thumbnail(\'entry-thumb\', array(\'class\' => \'entry-thumb\')); ?>
<?php } else { ?>
<?php $img_url = get_post_meta(get_the_ID(), \'tj_video_img_url\', TRUE); ?>
<?php if($img_url != null) { ?><img src="<?php echo $img_url; ?>" alt="<?php the_title(); ?>" class="entry-thumb"/><?php } ?>
<?php } ?>
<?php if($embed) { ?>
<div class="video-flag"></div>
<?php }?>
</a>
<div class="entry-meta">
<?php the_time(\'M j, Y\'); ?> · by <?php the_author_posts_link(); ?>
<span class="entry-comment">
<?php comments_popup_link( __( \'0\', \'theme junkie\' ), __( \'1\', \'theme junkie\' ), __( \'%\', \'theme junkie\' ) ); ?>
</span>
</div><!-- .entry-meta -->
<h2 class="entry-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="entry-content">
<p><?php the_excerpt(); ?></p>
</div><!-- .entry-content -->
</div><!-- #post-<?php the_ID(); ?> .entry-box -->