在WordPress中获取归档页面的最新张贴时间可以通过以下步骤实现:
<?php
$args = array(
'post_type' => 'post',
'posts_per_page' => 1,
'orderby' => 'date',
'order' => 'DESC'
);
$query = new WP_Query($args);
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
$latest_post_date = get_the_date();
}
}
wp_reset_postdata();
echo '最新张贴时间:' . $latest_post_date;
?>
以上代码使用了WP_Query类来查询最新的文章,并通过get_the_date()函数获取最新文章的发布日期。最后,使用echo语句将最新张贴时间输出到归档页面。
这样,当访问归档页面时,就会显示最新张贴时间。
推荐的腾讯云相关产品:腾讯云服务器(https://cloud.tencent.com/product/cvm)和腾讯云数据库(https://cloud.tencent.com/product/cdb)可以为WordPress提供稳定的服务器和数据库支持。
领取专属 10元无门槛券
手把手带您无忧上云