在 Wordpress 中,我想显示 2 个最新帖子以及第一个帖子的帖子缩略图。
我一直在玩下面的代码,但是当我只想为第一个帖子显示图像时,总是会为第一个帖子和第二个帖子显示图像。
<?php
$cat_args = array(
'orderby' => 'name',
'order' => 'ASC',
'child_of' => 0
);
$post_args = array(
'numberposts' => 2,
'category' => $category->term_id
);
$posts = get_posts($post_args);
foreach($posts as $post) {
?>
<?php the_title(); ?>
<?php the_post_thumbnail('blog_post_image'); ?>
<?php
}
}
?>