wordpressのカテゴリ一覧で記事の画像を表示する

ありがた迷惑なことに、
wordpressのバージョン3.*くらいから、一覧にはサマリー表示されています。
スマートフォン対策なんでしょうかね?

ということで、記事の詳細表示と同じにする方法です。

loop.php

変更前

1<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
2<div class="entry-summary">
3<?php the_excerpt(); ?>
4</div><!-- .entry-summary -->
5<?php else : ?>
6<div class="entry-content">
7<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>
8<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
9</div><!-- .entry-content -->
10<?php endif; ?>

変更後

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 -->

これならば、だれでも簡単にできると思います。

コメントを残す