我正在使用ACF在我的网站前端显示一篇特色文章。我还需要显示帖子的日期。这是我当前的代码:`
特色帖子,完整);//这将获取特色帖子的缩略图$缩略图[0]<;--这是图像的URL
?>
<img src="<?php echo $thumbnail[0]; ?>">
<h3><a href="<?php echo get_permalink($featured_post->ID); ?>"><?php echo get_the_title($featured_post->ID); ?></a></h3>
<p><?php echo custom_excerpt($featured_post->post_content, 2000, \'\'); // this function is defined in functions.php ?></p>
</div>`