-
Notifications
You must be signed in to change notification settings - Fork 82
activitypub_rest_moderators
github-actions[bot] edited this page Jul 29, 2025
·
8 revisions
Filter the list of moderators.
add_filter(
'activitypub_rest_moderators',
'my_activitypub_rest_moderators_callback'
);
function my_activitypub_rest_moderators_callback( array $actors ) {
// Your code here.
return $actors;
}
-
array
$actors
The list of moderators.
apply_filters( 'activitypub_rest_moderators', $actors )
Follow @[email protected] for updates and news.