Skip to content

Instantly share code, notes, and snippets.

@hitsujixgit
Created June 16, 2014 01:08
Show Gist options
  • Save hitsujixgit/9312a28d9e3ced734af1 to your computer and use it in GitHub Desktop.
Save hitsujixgit/9312a28d9e3ced734af1 to your computer and use it in GitHub Desktop.
Wordpress sample theme for training. #03 (only body tag)
<body>
<div id="container"><!-- 全体を中央寄せ-->
<div id="header">
<h1><?php bloginfo('name'); ?></h1>
</div> <!–header–>
<div id="contents">
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<div class="post">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
</div> <!–post–>
<?php endwhile; endif; ?>
</div> <!–contents–>
<div id="footer">
<?php bloginfo('name'); ?> All rights reserved.
</div><!-- footer -->
</div><!-- container -->
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment