Advanced Custom Fields

<?php
    // ACF フィールドのみを表示する例
    if (have_posts()) :
        while (have_posts()) : the_post();
            if (function_exists('the_field')) {
                the_field('your_acf_field_name'); // ACF フィールドの表示
            }
        endwhile;
    endif;
?>
<?php
    // ACF フィールドと投稿コンテンツを両方表示する例
    if (have_posts()) :
        while (have_posts()) : the_post();
            the_content(); // 投稿コンテンツの表示
            if (function_exists('the_field')) {
                the_field('code'); // ACF フィールドの表示
            }
        endwhile;
    endif;
?>