您需要输入您试图获取字段的帖子的ID:例如
get_field(\'display_featured_image\', $post_id).
在一个循环中,你可以
get_field(\'display_featured_image\', get_the_id());
ACF将字段数据存储在wp的meta\\u字段中,因此您甚至可以使用wp的内置元处理程序自己提取数据,例如:
get_post_meta( $post_id, \'acf_field_name\', true); // Use true for almost every case, as WP will return an array otherwise.