目前,我有下面显示的代码。
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12">
<a class="vissted" href="<?php the_permalink(); ?>">
<div class="hovereffect">
<div class="thumbnail">
<?php the_post_thumbnail(\'singles\', array( \'class\' => "img-responsive")); ?>
<div class="overlay">
<h2><?php the_title(); ?></h2>
</div>
<div class="caption">
<div class="ratings">
<p class="pull-right"> </p>
<p>
Watch Video
</p>
</div>
</div>
</div>
</div>
</a>
</div>
<?php endwhile; else : ?>
<p>
<?php _e( \'Sorry, no posts matched your criteria.\' ); ?>
</p>
<?php endif; ?>
<?php wp_reset_query(); ?>
这段代码只显示了我网站上的每一篇文章,这很酷,但我希望将其提升到下一个层次。例如,我如何使其显示每天的帖子。你可以看到,在顶部的角落里,它显示了帖子的日期,我希望它在我的网站上这样做,然后限制为1周,但在一个新的块中显示每个结果。