このコードを使用して、カテゴリと投稿のリストを階層順に表示できます。
<?php
/*
Template Name: Archives with Content
*/
?>
<?php get_header(); ?>
<div id="content" class="widecolumn">
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<div class="post">
<h2 id="post-<?php the_ID(); ?>"><?php the_title();?></h2>
<div class="entrytext">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<div id="main">
<?php //include (TEMPLATEPATH . '/searchform.php'); ?>
<h2>Archives by Month:</h2>
<ul>
<?php wp_get_archives('type=daily&limit=1&show_post_count=1'); ?>
</ul>
<h2>Archives by Subject:</h2>
<ul>
<?php wp_list_categories('orderby=name&show_count=1'); ?>
</ul>
<?php get_footer(); ?>
1.上記のコードをarchieve_page.php.という名前のファイルにコピーするだけです。次に、[管理]-> [ページ]-> [ページを追加]に移動し、タイトルをアーカイブページとして指定し、右側隅にあるドロップダウンテンプレートをクリックして[アーカイブ]を選択しますcontent」をクリックして公開をクリックし、上部の「ページを表示」をクリックしてページを表示します。