Adding post date to ACF field

时间:2016-09-03 作者:user3528624

我正在使用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>`

1 个回复
SO网友:Unnikrishnan R

您可以使用get\\u the\\u time()获取发布时间。

<?php get_the_time( $format, $featured_post->ID ); ?>
请参见教程https://codex.wordpress.org/Function_Reference/get_the_time