wordpress显示最新文章代码(用于主页或者文章底部)

时间: 2023年 4月 3日 下午9:59

显示最新文章代码

 

<section class=”index-news clearfix”>
<div class=”container”>
<hgroup class=”index-title”>
<p class=”t1″>新闻中心</p>
<p></p>
</hgroup>
<ul>
<?php
// 自定义文章查询参数
$args = array(
‘post_type’ => ‘post’,
‘posts_per_page’ => 3, // 仅显示三篇文章
);

// 创建文章查询
$query = new WP_Query( $args );

// 循环文章
while ( $query->have_posts() ) : $query->the_post();
?>
<li>
<a href=”<?php the_permalink(); ?>”>
<figure class=”pic”>
<?php the_post_thumbnail(‘thumbnail’, array(‘class’ => ‘vcenter’)); ?>
</figure>
<div class=”tit”><?php the_title(); ?></div>
<div class=”txt”><?php the_excerpt(); ?></div>
<time><?php the_time(‘Y-m-d’); ?></time>
</a>
</li>
<?php endwhile; ?>

<?php wp_reset_postdata(); ?>
</ul>
</div>
</section>