We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Fires after an ActivityPub FeatureRequest activity has been handled.
/** * Fires after an ActivityPub FeatureRequest activity has been handled. * * @param array $activity * @param Activitypub\int[] $user_ids * @param bool $state * @param string $policy */ function my_activitypub_handled_feature_request_callback( array $activity, Activitypub\int[] $user_ids, bool $state, string $policy ) { // Your code here. } add_action( 'activitypub_handled_feature_request', 'my_activitypub_handled_feature_request_callback', 10, 4 );
array
$activity
Activitypub\int[]
$user_ids
bool
$state
string
$policy
\do_action( 'activitypub_handled_feature_request', $activity, (array) $user_ids, $state, $policy )
← All Hooks