Created
June 19, 2014 00:21
-
-
Save hitsujixgit/cb50990a02554d24d253 to your computer and use it in GitHub Desktop.
最小限のファイルでテーマを作成してみる-2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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