如何在自定义帖子类型循环中获取ACF字段

时间:2019-07-02 16:30:39

标签: php wordpress loops advanced-custom-fields

我为“项目”创建了自定义帖子类型。我还为“项目”类型创建了自定义字段,但是我似乎无法访问它们,不确定即时消息做错了什么。这是我的代码:

<?php 
  $args = array (
  'post_type' => 'project',
  'status' => 'publish',
  'order' => 'ASC',
  'posts_per_page' => -1
  );
 $the_query = new WP_Query($args);
?>

 <div class="home-slider">

  <?php if($the_query->have_posts()) : ?>
   <?php while($the_query->have_posts()) : $the_query->the_post(); ?>

    <div class="slide">

      <div class="project-name">
       <p><?php the_title(); ?></p>
      </div>

      <div class="project-description">
       <?php echo get_field('intro_text'); ?>
      </div>

     </div>

  <?php endwhile; ?>
 <?php endif; wp_reset_query(); ?>

</div>

1 个答案:

答案 0 :(得分:1)

如果您的帖子类型称为“项目”,也许是问题所在

'post_type' => 'project(s)',