TwentyTen TOPページの記事表示件数を変更する

ワードプレステーマTwentyTenのTOPページの記事表示件数を個別に設定する方法です。

通常は1記事表示が良いとは思いますが、複数記事を表示させたい場合や単独で1記事表示にしたい場合など、TOPページ単独で記事表示件数を設定する事が出来ます。

それでは、テンプレートファイルの中から’index.php’(メインインデックスのテンプレート)ファイルを開いて下さい。(小テーマを使用している方は、小テーマ側のテンプレートファイルを編集して下さい)

‘index.php’ファイルの中から次の場所を探して下さい。

<div id="container">
			<div id="content" role="main">

			<?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.
			 */
			 get_template_part( 'loop', 'index' );
			?>
			</div><!-- #content -->
		</div><!-- #container -->

↓これを以下の様に追加/変更して下さい。

<div id="container">
			<div id="content" role="main">
              <?php if ( have_posts() ) query_posts($query_string.'&posts_per_page=10'); ?>

			<?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.
			 */
			 get_template_part( 'loop', 'index' );
			?>
			</div><!-- #content -->
		</div><!-- #container -->

赤色の部分を追加すればOKです。緑の数字が表示したい記事数です。お好みの数値に変更して下さい。これで、TOPページの記事表示件数が変わったハズです。

このままですと記事が全文表示になっていると思います。抜粋表示に変更したい方はコチラ⇒TwentyTen TOPページの記事を抜粋表示にする


にほんブログ村 ブログブログ ブログノウハウへ

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です