bp_get_profile_last_updated ()
返回格式化字符串,显示配置文件最后一次更新的时间。
描述
返回
(bool |字符串)
源
文件:bp-xprofile / bp-xprofile-template.php
函数bp_get_profile_last_updated() {$last_updated = bp_get_user_meta(bp_displayed_user_id(), 'profile_last_updated', true);如果(!empty($last_updated)){/** *过滤用于显示配置文件上次更新时的格式化字符串。* * @since BuddyPress 1.0.0 * * @param string $value格式化最近更新的指示器字符串。*/返回apply_filters('bp_get_profile_last_updated', sprintf(__('Profile updated %s', 'buddyboss'), bp_core_time_since(strtotime($last_updated))));}返回false;}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.0.0 | 介绍了。 |