我正在尝试按日期将我在索引页上的帖子分组。例如:日期1
1号岗位
2号岗位
3号岗位
日期2
1号岗位
2号岗位
3号岗位
出于某种原因,我总是在每个日期下发帖子。这是我的密码,我想不出哪里出了问题
<?php
$args = array(\'posts_per_page\' => -1, \'orderby\' => \'date\' );
$myQuery = new WP_Query($args);
$date = \'\';
if ( $myQuery->have_posts() ) : while ( $myQuery->have_posts() ) : $myQuery-
>the_post();
if ( $date != get_the_date() ) {
echo $date;
} ?>
<time class="post-date" datetime="<?php the_time(\'Y-m-d\'); ?>"><?php
the_time(\'F jS, Y\') ?></time>
<?php
$categories = get_the_category();
foreach ( $categories as $category ) {
echo \'<div class="row">
<div class="column left"><a href="\' . esc_url( get_category_link(
$category ) ) . \'">
<img src="\' . esc_url( \'http://example.com/icons/\' . intval( $category-
>term_id ) . \'.png\' ) . \'" alt="\' . esc_attr( $category->name ) . \'" /></a>
</div>\';
}
?>
<div class="column right"><?php the_content(); ?></div>
<?php
endwhile; endif;
wp_reset_postdata();
?>