PHP Date display as time ago 时间:2018-01-22 作者:Jordan Kellett 有人知道我如何将此日期格式更改为“时间”而不是“日/月/年”吗<?php the_time(\'M j, Y\') ?> 谢谢。 1 个回复 最合适的回答,由SO网友:kero 整理而成 有一个功能:human_time_diff(). 这样使用:(U 因为我们需要unix时间戳)<?php echo human_time_diff( get_the_time(\'U\') ); ?> 如果需要其他文本,可以使用以下内容<?php printf (esc_html__(\'%s ago\', \'yourlanguageslug\'), human_time_diff(get_the_time(\'U\'))); ?> 结束 文章导航