-
Notifications
You must be signed in to change notification settings - Fork 82
activitypub_screen_options
github-actions[bot] edited this page Aug 26, 2025
·
9 revisions
Filters Activitypub settings screen options.
/**
* Filters Activitypub settings screen options.
*
* @param Activitypub\string[] $screen_options
* @return Activitypub\string[] The filtered value.
*/
function my_activitypub_screen_options_callback( Activitypub\string[] $screen_options ) {
// Your code here.
return $screen_options;
}
add_filter( 'activitypub_screen_options', 'my_activitypub_screen_options_callback' );
-
Activitypub\string[]
$screen_options
Screen options. An array of user meta keys and screen option labels.
\apply_filters( 'activitypub_screen_options', $screen_options )
Follow @[email protected] for updates and news.