Skip to content

Instantly share code, notes, and snippets.

@guzuri
Created October 3, 2013 10:06
Show Gist options
  • Save guzuri/6807767 to your computer and use it in GitHub Desktop.
Save guzuri/6807767 to your computer and use it in GitHub Desktop.
ループ、カスタムフィールドの例
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
//ACFの基礎形
<?php the_field('hoge'); ?>
<?php endwhile;?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment