答案 0 :(得分:0)
这是一个简短的代码 - 相应地编辑
<?php get_header(); ?>
<?php $first = true; ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();?>
<?php if ( $first ){ ?>
<div id="featured-image"><?php the_post_thumbnail('featured'); //You will need a custom size ?></div>
<?php $first = false; ?>
<section id="content">
<?php } ?>
<section id="blog-bost" <?php post_class(); ?>>
<?php $first = true; ?>
<?php if($first){
the_title();
the_excerpt();
}
else{
the_post_thumbnail();
the_title();
the_excerpt();} ?>
</section>
<?php endwhile; endif; wp_reset_query(); ?>
</section>
<?php get_sidebar();?>
<?php get_footer(); ?>