Support

Account

Home Forums General Issues Get all fields inlcuding “ACF” (Advanced Custom Fields) columns in wp_query Reply To: Get all fields inlcuding “ACF” (Advanced Custom Fields) columns in wp_query

  • I got the answer from stackoverflow:

    <?php while($loop->have_posts()) : $loop->the_post(); ?>   
       <h2><?php the_title(); ?></h2>  
       <?php the_content(); ?>
       <p>My Custom Field: <?php echo get_post_meta(get_the_ID(),'my-custom-field', true); ?>
    <?php endwhile; wp_reset_postdata(); ?>