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