bp_profile_last_updated()
Render a formatted string displaying when a profile was last updated.
Description Description
Source Source
File: bp-xprofile/bp-xprofile-template.php
function bp_profile_last_updated() { $last_updated = bp_get_profile_last_updated(); if ( empty( $last_updated ) ) { _e( 'Profile not recently updated.', 'buddypress' ); } else { echo $last_updated; } }
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |