ところが、「つぶくまブログ」ではトップページではないところにブログのトップページに当たる最新記事一覧を置いてしまった関係か、その機能が動いてくれません。
ちなみに、記事途中に「Moreタグ」を入れればそこに「続きを読む」が入るという非常に簡単で便利な機能です。
こんな感じ。

赤で囲まれたボタンを押すと「More…」と書かれたラインが入り、そこに「続きを読む」が入る。
が、これだけじゃ結局できないのが今の環境。
普通にトップページが最新記事一覧であれば問題ないんですけどね。
色々調べてみるとやはり固定ページを使ってPHPプログラムを書いたテンプレートを適応させる方法ではなにもしないと「続きを読む」が表示されないようです。
その場合、以下のようにやれば表示されます。
□ テンプレートタグ/query posts - WordPress Codex 日本語版
続きを読む を表示したい場合は、グローバル変数 $more を 0 にします。重要なのは真ん中の部分。<!--?php
// 投稿 ID が 5 の投稿を表示する
query_posts( 'p=5' );
// 投稿の始めの部分のみ表示するため $more を 0 にする
global $more;
$more = 0;
// ループ
while (have_posts()) : the_post();
the_content( 'Read the full post ≫' );
endwhile;
?-->
これを僕のテンプレート(blog.php)に書き加えたものが以下。
<?php
/**
* Template Name: ブログテンプレート
*/
get_header(); ?>
※中略(HTML表記)
<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-index.php and that will be used instead.
*/
global $more;
$more = 0;
query_posts( 'post' );
get_template_part( 'loop', 'index' );
?>
※中略(HTML表記)
<?php get_sidebar(); ?>
<?php get_footer(); ?>
以前のソースとちょっと違いますが気にせずに。/**
* Template Name: ブログテンプレート
*/
get_header(); ?>
※中略(HTML表記)
<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-index.php and that will be used instead.
*/
global $more;
$more = 0;
query_posts( 'post' );
get_template_part( 'loop', 'index' );
?>
※中略(HTML表記)
<?php get_sidebar(); ?>
<?php get_footer(); ?>
ちなみに「続きを読む」が無いときは。

と、こんなに長かったページが、「続きを読む」を付けたことで、

こんなにコンパクトになりました。