我正在使用ACF向自定义帖子类型添加字段。
我创建了一个WP\\u Query实例来设置循环。在循环中,我可以使用\\u title()和\\u content()发布标准字段。但是,ACF函数the\\u字段不会发布附加字段的值。
“the\\u field()”和“echo the\\u field()”都不会生成字段值。
所以如何准确发布这些值?
这是我的循环:
$jobs_query = new WP_Query($args) ;
if ($jobs_query->have_posts()) : ?>
<section id="jobs-list">
<?php while ($jobs_query->have_posts()) : $jobs_query->the_post(); ?>
<article class="">
<h3 class="job-title"><?php the_title() ?></h3>
<div class="employer">
<p><?php the_field(\'employer\') ?></p>
</div>
<div class="job-description">
<?php echo the_field(\'job_description\') ?>
</div>
<p class="job-readmore"><a href="<?php echo get_permalink() ?>">read more</a></p>
</article>
<?php endwhile; ?>
<h4>done</h4>
</section>
<?php endif; ?>