ありがた迷惑なことに、
wordpressのバージョン3.*くらいから、一覧にはサマリー表示されています。
スマートフォン対策なんでしょうかね?
ということで、記事の詳細表示と同じにする方法です。
loop.php
変更前
1 | <?php if ( is_archive() || is_search() ) : |
2 | <div class ="entry-summary"> |
3 | <?php the_excerpt(); ?> |
4 | </div><!-- .entry-summary --> |
6 | <div class ="entry-content"> |
7 | <?php the_content( __( 'Continue reading <span class ="meta-nav">&rarr;</span>', 'twentyten' ) ); ?> |
8 | <?php wp_link_pages( array ( 'before' => '<div class ="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> |
9 | </div><!-- .entry-content --> |
変更後
1 | <div class ="entry-content"> |
2 | <?php the_content(); ?> |
3 | <?php wp_link_pages( array ( 'before' => '<div class ="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> |
4 | </div><!-- .entry-content --> |
これならば、だれでも簡単にできると思います。