#MAMPを使ったWordpressでのWEB制作方法11 初心者向け
今回は詳細ページの作成です。
前回の記事はこちら
MAMPを使ったWordpressでのWEB制作方法11 初心者向け
##詳細ページの作成
詳細ページもレイアウトは統一されているのでまずは
ヘッダー、フッター、サイドバーと表示部分が空になった
フレームだけを用意します。
single.php
<?php get_header(); ?>
<div class="wrapper">
<div id="conL">
</div><!--conLend-->
<?php get_sidebar(); ?>
</div><!--wrapperend-->
<?php get_footer();
前回の投稿一覧ページ同様以下のif文を作成して
タイトルと中身を取得できるようにタグを設置します。
single.php
<?php get_header(); ?>
<div class="wrapper">
<div id="conL">
<!--loopstart-->
<?php if(have_posts()): while(have_posts()): the_post();?>
<h2><?php the_title(); ?></h2>
<!--loopcontent-->
<?php the_content(); ?>
<!--loopend-->
<?php endwhile; endif; ?>
<a class="btn" href="<?php echo home_url(); ?>/contact"><button class="btn1">お問い合わせ</button></a>
</div><!--conLend-->
<?php get_sidebar(); ?>
</div><!--wrapperend-->
<?php get_footer();
中身は表示できましたが日付が入っていないので追加します。
タイトルの下にタグを入れましょう。
single.php
<?php get_header(); ?>
<div class="wrapper">
<div id="conL">
<!--loopstart-->
<?php if(have_posts()): while(have_posts()): the_post();?>
<h2><?php the_title(); ?></h2>
<p><?php the_time('Y/m/d'); ?></p>
<!--loopcontent-->
<?php the_content(); ?>
<!--loopend-->
<?php endwhile; endif; ?>
<a class="btn" href="<?php echo home_url(); ?>/contact"><button class="btn1">お問い合わせ</button></a>
</div><!--conLend-->
<?php get_sidebar(); ?>
</div><!--wrapperend-->
<?php get_footer();
以上で投稿ページは完成です。
次はお問い合わせページを作成します。
MAMPを使ったWordpressでのWEB制作方法13 初心者向け