给你。这个进去了functions.php
这会改变你网站上任何地方的时间。现在您可以继续使用<?php echo get_the_date(); ?>
在循环或主题文件中。
// Relative date & time
function wpse_relative_date() {
return human_time_diff( get_the_time(\'U\'), current_time( \'timestamp\' ) ) . \' ago\';
}
add_filter( \'get_the_date\', \'wpse_relative_date\' ); // for posts and pages
// add_filter( \'get_comment_date\', \'wpse_relative_date\' ); // for comments
之前我添加了一条PHP注释
add_filter
也可以更改评论日期。因为我不确定你是否也希望这样评论。如果需要,请删除PHP注释。