Warning: This function has been deprecated.
bp_blogs_transition_activity_status( string $new_status, string $old_status, object $comment )
When a blog comment status transition occurs, update the relevant activity’s status.
Description Description
Parameters Parameters
- $new_status
-
(Required) New comment status.
- $old_status
-
(Required) Previous comment status.
- $comment
-
(Required) Comment data.
Source Source
File: bp-core/deprecated/2.5.php
function bp_blogs_transition_activity_status( $new_status, $old_status, $comment ) { _deprecated_function( __FUNCTION__, '2.5.0', 'bp_activity_transition_post_type_comment_status()' ); bp_activity_transition_post_type_comment_status( $new_status, $old_status, $comment ); }
Changelog Changelog
Version | Description |
---|---|
2.5.0 | This function has been deprecated. |
1.6.0 | Introduced. |