Skip to content

Instantly share code, notes, and snippets.

@hitsujixgit
Created June 19, 2014 00:21
Show Gist options
  • Save hitsujixgit/cb50990a02554d24d253 to your computer and use it in GitHub Desktop.
Save hitsujixgit/cb50990a02554d24d253 to your computer and use it in GitHub Desktop.
最小限のファイルでテーマを作成してみる-2
<body>
<h1><?php bloginfo('name'); ?></h1>
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment