WordPress 中文章发布时间是按照第一次发布时间为准的,如果你想要以最终修改时间为准,可以在你的 single.php 或 index.php 中找到以下代码:
Posted on <?php the_time('F jS, Y') ?> |
替换为:
Posted on <?php the_time('F jS, Y') ?> <?php $u_time = get_the_time('U'); $u_modified_time = get_the_modified_time('U'); if ($u_modified_time != $u_time) { echo "and last modified on "; the_modified_time('F jS, Y'); echo ". "; } ?> |
自己使用
<p style="text-align: right;"><?php $u_time = get_the_time('U'); $u_modified_time = get_the_modified_time('U'); if ($u_modified_time != $u_time) { echo "最终修改于"; the_modified_time('Y/m/d · H:i'); } ?></p> |
更新日:2012/08/29 · 09:38
————本日志版权归花莫笑所有。
日志内的相关图文请勿转载。