我正在构建一个艺术家目录页面,它将所有艺术家页面显示为带有标题的缩略图。然后我会喜欢它,以便当您单击其中一个缩略图时,它会将您带到该页面并显示各个字段 ACF。但是,它只显示标题,我根本无法让它显示生物字段!
<h1><?php echo $post->post_title; ?></h1>
<div id="artist-bio">
<?php the_field('artist_bio'); ?>
</div>
我正在构建一个艺术家目录页面,它将所有艺术家页面显示为带有标题的缩略图。然后我会喜欢它,以便当您单击其中一个缩略图时,它会将您带到该页面并显示各个字段 ACF。但是,它只显示标题,我根本无法让它显示生物字段!
<h1><?php echo $post->post_title; ?></h1>
<div id="artist-bio">
<?php the_field('artist_bio'); ?>
</div>