これは完全自分用メモ。wordpressの設定について
http://ja.forums.wordpress.org/topic/4662
twentyoneというテンプレートを使ってると、カテゴリーで「続きを読む」が表示されない件について。
ややこしいのはwordpressをアップデートするたびに、該当ファイルloop.phpを下記戻してしまう。更新したときには、下記の書き換えが必要。
以下、引用
次にloop.php のファイルの中を下記のように書き換えました。132行目から<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?><div><?php the_excerpt(); ?></div><!– .entry-summary –><?php else : ?><div><?php the_content( __( ‘Continue reading <span>→</span>’, ‘twentyten’ ) ); ?><?php wp_link_pages( array( ‘before’ => ‘<div>’ . __( ‘Pages:’, ‘twentyten’ ), ‘after’ => ‘</div>’ ) ); ?></div><!– .entry-content –><?php endif; ?>ここまでを以下のように書き換え<div><?php the_content(); ?><?php wp_link_pages( array( ‘before’ => ‘<div>’ . __( ‘Pages:’, ‘twentyten’ ), ‘after’ => ‘</div>’ ) ); ?></div><!– .entry-content –>