Created
June 19, 2014 06:55
-
-
Save hitsujixgit/de70198c2f72a0d5ca07 to your computer and use it in GitHub Desktop.
コメントフォームを設置する - index.phpをカスタマイズする#6
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
| <?php get_header(); ?> | |
| <div id="content"> | |
| <?php | |
| while(have_posts()) { | |
| the_post(); | |
| get_template_part('content'); | |
| if( is_singular('post') ) { | |
| comments_template(); | |
| } | |
| } ?> | |
| </div> | |
| <?php | |
| get_sidebar(); | |
| get_footer(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment