個別投稿ページ(page.php)は、シンプルに
固定ページはこんな感じです。
うーん、何の工夫もないか・・・。
まあいいですね。
シンプルが一番です!
<?php get_header(); ?>
<div id="contents"><!-- contentns -->
<div id="main">
<article>
<header>
<?php if(have_posts()): while(have_posts()): the_post(); ?><!-- ループ開始 -->
<h1><?php the_title(); ?></h1> <!-- 記事タイトルを表示 -->
</header>
<?php the_content(); ?> <!-- 記事本文を表示 -->
<?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(); ?>
スポンサーリンク
コメントを残す