WordPressでは時間的に固定されたページ固定ページを使うことができる。
作り方としては
page.phpに以下のような設定をする。
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<div id=”title”><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></div>
<?php the_content(); ?>
<?php endwhile; endif; ?>
ループを使いその中に固定ページで作られた情報が
<?php the_content(); ?>で置き換えられる。