BP_Activity_Feed::feed_content()
Output the feed’s item content.
Description Description
Source 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', 'buddypress' ) ?></strong> -
<?php bp_activity_parent_content() ?>
<?php
endif;
break;
}
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.8.0 | Introduced. |