index.phpかcategory.phpに以下を貼り付け
<?php
$first = true;
if(have_posts()){
while(have_posts()){ //★ループが始まって
the_post();
echo '<div class="waku"><h2 class="entry-title"><a href="';
the_permalink( );
echo '">';
the_title();
echo '</a></h2>'; //★divの始まり
if($first){
$first = false;
echo '<div class="entryfirst">';
echo '' . get_the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ) . '</div>';
}else{
echo '<div class="entry">';
echo '' . get_the_excerpt() . '</div>'; //★この辺も閉じタグ?
}
echo '</div>';
}
}
?>
参考サイト ja.forums.wordpress.org…
