我需要將第一個博客文章圖像顯示爲全寬,然後是其他設計,請參閱附加圖像以供參考。如何在wordpress中以全角顯示第一個博客圖像
請讓我知道我該怎麼做?
編輯:http://gearhungry.com/ 我需要的正是這樣。
我需要將第一個博客文章圖像顯示爲全寬,然後是其他設計,請參閱附加圖像以供參考。如何在wordpress中以全角顯示第一個博客圖像
請讓我知道我該怎麼做?
編輯:http://gearhungry.com/ 我需要的正是這樣。
繼承人簡要碼 - 編輯相應
<?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(); ?>
什麼意思在「另一博客繼續」去了? – Mark
檢查這個網站:http://gearhungry.com/ 需要完全一樣的。 – userdead