如何在wordpress中显示全宽度的第一个博客图像

时间:2013-06-20 07:47:02

标签: image wordpress plugins

我需要将第一篇博客文章图片作为全宽,然后是其他设计,请参阅附图以供参考。

请让我知道我该怎么做?

img

编辑:http://gearhungry.com/ 我需要完全像这样。

1 个答案:

答案 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(); ?>