wordpress文章显示发布时间或修改时间用代码如何实现,官网给出了the_time()
和the_modified_time()
两个代码,下面我们详细介绍一下!
1、显示发布时间
<?php the_time('Y年n月d日 H:i:s'); ?>
2、显示修改时间
<?php the_modified_time('Y年n月d日 H:i:s'); ?>
3、如果已修改发布修改时间否则显示发布时间
<p>发布于<?php the_time('Y年n月d日 H:i:s'); ?> <?php if ((get_the_modified_time('Y')*365+get_the_modified_time('z')) >(get_the_time('Y')*365+get_the_time('z'))) { ?> <?php echo ',最后一次修改于' ?><?php the_modified_time('Y年n月d日 H:i:s'); ?> <?php } ?> </p>
wordpress如何把发布的具体时间改成(几分/几小时前)类型
上面是“wordpress文章显示发布时间或修改时间”的全面内容,想了解更多关于 wordpress 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_2378.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!