BP_Akismet::history_metabox( object $item )
History meta box for the Activity admin edit screen.
Description
See also
Parameters
- $item
-
(Required) Activity item.
Source
File: bp-activity/classes/class-bp-akismet.php
637 638 639 640 641 642 643 644 645 646 | function history_metabox( $item ) { $history = BP_Akismet::get_activity_history( $item ->id ); if ( empty ( $history ) ) return ; echo '<div class="akismet-history"><div>' ; printf( __( '%1$s - %2$s' , 'buddyboss' ), '<span>' . bp_core_time_since( $history [2] ) . '</span>' , esc_html( $history [1] ) ); echo '</div></div>' ; } |
Changelog
Version | Description |
---|---|
BuddyPress 1.6.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.