WordPressカスタムフィールドのデータ取得表示 Feb 27, 2013 Tags: tips, wp WordPressカスタムフィールドのデータ取得表示。 表示させたい箇所に下記コードを記述。 <?php if(have_posts()) : while(have_posts()) : the_post(); ?> <?php echo get_post_meta($post->ID , 'カスタムフィールドの名前' ,true); ?> <?php endwhile; endif; ?>