将注释时间输出更改为:X时间之前,而不是实际日期和时间 时间:2017-10-01 作者:The WP Intermediate <?php printf(__(\'%1$s at %2$s\'), get_comment_date(), get_comment_time()) ?> 以上是注释的默认代码。WP核心中的php。这将产生如下输出: 2017年10月1日上午6:58但我想要这样的东西→发布时间:11个月前或3天前发布或23小时前发布是否可以与这两个方面进行协作:get_comment_date(), get_comment_time() 要达到上述效果? 1 个回复 最合适的回答,由SO网友:lukgoh 整理而成 您需要的是:https://codex.wordpress.org/Function_Reference/human_time_diff因此,这应该正好满足您的需要: <?php printf( _x( \'%s ago\', \'%s = human-readable time difference\', \'your-text-domain\' ), human_time_diff( get_comment_time( \'U\' ), current_time( \'timestamp\' ) ) ); ?> 结束 文章导航