function bp_member_profile_stats_header_meta() { ?>

'; if ( $total_count == 0 ) { $content .= __( 'No status updates yet.', 'bp-member-profile-stats' ); } else if ( $total_count == 1 ) { $total_count = '' . $total_count . ''; $content .= $total_count . __( ' status update', 'bp-member-profile-stats' ); } else { if ( $daysince > 0 ) { $total_count = '' . $total_count . ''; $content .= $total_count . __( ' status updates (', 'bp-member-profile-stats' ) . round( $total_count / $daysince, 2 ) . __( ' updates per day on average)', 'bp-member-profile-stats' ) . ''; } else { $content .= $total_count . __( ' status updates (', 'bp-member-profile-stats' ); } } //$content .= ''; return apply_filters( 'bp_member_profile_stats_get_member_status_daysince', $content, $total_count ); }