所以这是我的代码:
<div id="content" role="main">
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div class="page-content rich-content">
<?php
// Recently Updated
$args = array(
'view' => 'grid-mini',
'title' => __('Recently Added', 'dp'),
'post_type' => 'post',
'ignore_sticky_posts' => true,
'posts_per_page' => 999,
'orderby' => 'date',
);
dp_section_box($args);
?>
</div>
</div><!--end .hentry-->
<?php endwhile; ?>
我想将查询分类到不同的部分。
每个部分都是一个页面,所以我真的不需要将args放在一个文件中。
我在问:如何才能对它们进行排序:今天,昨天以及昨天之前的所有帖子!
我现在在线搜索超过5个小时,没有运气:)