bp_group_request_time_since_requested()
Source Source
File: bp-groups/bp-groups-template.php
function bp_group_request_time_since_requested() { global $requests_template; /** * Filters the formatted time since membership was requested. * * @since 1.0.0 * * @param string $value Formatted time since membership was requested. */ echo apply_filters( 'bp_group_request_time_since_requested', /* translators: %s: human time diff */ sprintf( __( 'requested %s', 'buddypress' ), bp_core_time_since( $requests_template->request->date_modified ) ) ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |