Skip to content

Instantly share code, notes, and snippets.

@hitsujixgit
Created June 19, 2014 04:20
Show Gist options
  • Save hitsujixgit/8593e8d8278dca895539 to your computer and use it in GitHub Desktop.
Save hitsujixgit/8593e8d8278dca895539 to your computer and use it in GitHub Desktop.
テンプレートパーツ化する - index.phpをカスタマイズする#2
<?php get_header(); ?>
<div id="content">
<?php
if(have_posts()): while(have_posts()): the_post();
get_template_part('content');
endwhile; endif; ?>
</div>
<?php
get_sidebar();
get_footer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment