我想显示带有标题和发布日期的2个帖子的摘录,代码已完成,但它只显示一个帖子的日期。
这是守则。
<div class="col-md-4">
<div class="reel-focus-blog wow slideInRight animated">
<h1>Reel Focus Blog</h1>
<?php
$the_query = new WP_Query( 'posts_per_page=2' );
while ($the_query -> have_posts()) : $the_query ->
the_post(); ?>
<div class="reel-focus-blog-box">
<h3><?php the_title(); ?></h3>
<p class="datetime"><i><?php the_date();?></i></p>
<p><?php the_excerpt(__('(more…)')); ?>
<a class="read-more" href="">Read More</a></>
</div>
<?php
endwhile;
wp_reset_postdata();?>
</div>
</div>
答案 0 :(得分:1)
使用
进行测试get_the_date()
// The Args
$args = array(
'posts_per_page' => 2,
'order' => 'DESC',
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
<div class="reel-focus-blog-box">
<h3><?php the_title(); ?></h3>
<p class="datetime"><i><?php echo get_the_date();?></i></p>
<p><?php the_excerpt(); ?>
<a class="read-more" href="">Read More</a></>
</div>
}
} else {
// no posts found
}
wp_reset_postdata();