1・以下のをwordpressディレクトリ以下のwp-content/themes/現在適用しているテーマにarchive_all.phpというファイル名で保存する
[php]
 <?php
 /*
 Template Name: archive_all
 */
 ?>
 <?php get_header() ?>
 <div id="container">
 <div id="content">
 <?php the_post() ?>
 <h2 class="page-title"><?php the_title(); ?></h2>
 <div class="entry-content">
 <?php the_content() ?>
 <?php wp_get_archives("type=postbypost");?>
 </div>
 </div><!– #content –>
 </div><!– #container –>
<?php get_footer() ?>
 [/php]
2・wordpressの管理画面から固定ページを新規作成し,テンプレート選択でarchive_all.phpを選択する。
 固定ページタイトルはarchives
3・固定ページのアドレスへアクセスすると過去記事一覧
 https://shantiworks.info/archives/
 
 
コメント