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.


Top ↑

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 );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.5.0 This function has been deprecated.
1.6.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.