Skip to content

activitypub_screen_options

github-actions[bot] edited this page Aug 26, 2025 · 9 revisions

Filters Activitypub settings screen options.

Auto-generated Example

/**
 * 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' );

Parameters

  • Activitypub\string[] $screen_options Screen options. An array of user meta keys and screen option labels.

Files

\apply_filters( 'activitypub_screen_options', $screen_options )

← All Hooks

Users

Developers

Clone this wiki locally