我正在搜索显示具有可变ID的ACF字段的值,但是我不知道如何编写代码。
<select id="scripts" name="scripts">
<?php
global $post;
$args = array( 'numberposts' => -1,
'post_type'=> 'chantier',);
$posts = get_posts($args);
foreach( $posts as $post ) : setup_postdata($post); ?>
<option value="<? echo $post->ID; ?>"><?php the_title(); ?></option>
<option value="
<? $postidchantier = $post->ID;
$users = get_field('conducteur_de_travaux_du_chantier', $postidchantier);
if ($users) {
foreach ($users as $user) {
$userNAME = $user[display_name];
echo $userNAME;
}}?>"><?php the_title(); ?></option>
</select>
<?php endforeach; ?>
如果我用一个ID(例如:1153)替换$postidchantier
,则它起作用,当我执行echo $postidchantier
时,我将获得值1153。
但是无法将ID与我的代码一起自动插入。
有人能帮我吗?