目前,收件箱或已发送标签中thread_id的最后回复时间戳的格式如下:August 21, 2017 at 5:06 am
我使用bp_message_thread_last_post_date()来显示时间戳。
如何将其更改为以2 days, 11 hours ago格式显示上次回复
发布于 2017-08-27 04:11:26
在您正在调用的buddypress函数中,它回显了一个应用过滤器的类似名称的函数的值。您应该创建自己的名为'bp_message_thread_last_post_date‘的筛选器,以根据需要更改日期格式。
在functions.php文件中,添加类似以下内容的内容:
add_filter( 'bp_message_thread_last_post_date', 'fluffyKittenDate', 10, 1 );
function fluffyKittenDate($oldformat) {
// reformat date contained in oldformat here and return the new value
}确保并使add_filter方法的优先级足够高,以确保您的筛选器最后运行。
https://stackoverflow.com/questions/45837606
复制相似问题