BP_Activity_Feed::feed_content()
Output the feed’s item content.
Description
Source
File: bp-activity/classes/class-bp-activity-feed.php
protected function feed_content() {
bp_activity_content_body();
switch ( $this->id ) {
// Also output parent activity item if we're on a specific feed.
case 'favorites' :
case 'friends' :
case 'mentions' :
case 'personal' :
if ( 'activity_comment' == bp_get_activity_action_name() ) :
?>
<strong><?php _e( 'In reply to', 'buddyboss' ) ?></strong> -
<?php bp_activity_parent_content() ?>
<?php
endif;
break;
}
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 1.8.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.