Skip to content

Instantly share code, notes, and snippets.

@torounit
Last active May 12, 2016 11:34
Show Gist options
  • Save torounit/2675968ad324d175e977ad80b015dc19 to your computer and use it in GitHub Desktop.
Save torounit/2675968ad324d175e977ad80b015dc19 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="ja">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<title>Document</title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url');?>">
<?php wp_head();?>
</head>
<body>
<?php if(have_posts()):?>
<?php while (have_posts()):?>
<?php the_post();?>
<article>
<h1><?php the_title();?></h1>
<?php the_content();?>
</article>
<?php endwhile;?>
<?php endif;?>
<?php wp_footer();?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment