アーカイブ一覧やindexに、記事投稿の抜粋表示部分のを表示させることで、Movable Typeの追記と同じような感じにする方法。
テンプレートファイルのindex.phpなど変更したい部分の
<?php the_content(__('Read the rest of this entry »')); ?>
を
<?php the_excerpt(); ?>
に置換する。
アーカイブ一覧やindexに、記事投稿の抜粋表示部分のを表示させることで、Movable Typeの追記と同じような感じにする方法。
テンプレートファイルのindex.phpなど変更したい部分の
<?php the_content(__('Read the rest of this entry »')); ?>
を
<?php the_excerpt(); ?>
に置換する。