メインインデックスのテンプレート(index.php)は、カテゴリー一覧専用
「index.php」は大切なファイルです。
固定ページ用のPHPファイル(page.php)がない時、「index.php」が表示されます。
投稿記事用のPHPファイル(single.php)がない時、「index.php」が表示されます。
表示できるものがないURLが指定され、404.phpがなくても「index.php」が表示されます。
トップページの記事一覧にも使われますね。
でも大丈夫ですよ~。
全部ありますから。
トップページは固定ページを使っていますから、これもいりません。
ということで、私のindex.phpは、カテゴリー一覧専用です!
<?php get_header(); ?>
<div id="contents"><!-- contentns -->
<div id="main">
<article>
<header>
<h1>「<?php the_category(', '); ?>」カテゴリーの記事一覧</h1>
</header>
<BR>
<?php if(have_posts()): while(have_posts()): the_post(); ?><!-- ループ開始 -->
<div class="home_area">
<section>
<div class="thumb_box">
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
<!-- アイキャッチ画像を表示 -->
<?php
$title= get_the_title();
the_post_thumbnail(array( 150,150 ),
array( 'alt' =>$title, 'title' => $title)); ?>
</a>
</div><!--//thumb_box-->
<p>公開日 <?php the_time('Y/m/d') ?> 最終更新日 <?php the_modified_date('Y/m/d') ?></p>
<h3><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<p class="clearleft"></p>
<BR>
</section>
</div><!--//home_area-->
<?php endwhile; endif; ?> <!-- ループ終了 -->
<br>
<p>スポンサーリンク</p>
<!-- Googleアドセンスw300 モバイル非表示 -->
<?php if (!wp_is_mobile()) :?>
<?php endif; ?>
<!-- Googleアドセンスw300 モバイル非表示 -->
<?php if (!wp_is_mobile()) :?>
<?php endif; ?>
<!-- Googleアドセンス モバイル用 -->
<?php if (wp_is_mobile()) :?>
<?php endif; ?>
<h3>関連記事-こちらもどうぞ</h3>
</article>
</div><!--//main-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
スポンサーリンク
コメントを残す